tsconfig.json 498 B

123456789101112131415161718192021
  1. {
  2. "compilerOptions": {
  3. "declaration": true,
  4. "importHelpers": true,
  5. "module": "commonjs",
  6. "outDir": "lib",
  7. "rootDirs": ["./"],
  8. "strict": true,
  9. "target": "es2017",
  10. "noImplicitAny": false,
  11. "esModuleInterop": true,
  12. "experimentalDecorators": true,
  13. "emitDecoratorMetadata": true,
  14. "skipLibCheck": true,
  15. "baseUrl": ".",
  16. "paths": {
  17. "@polkadot/types/augment": ["../../types/augment-codec/augment-types.ts"]
  18. }
  19. },
  20. "include": ["./**/*"]
  21. }