tsconfig.json 623 B

1234567891011121314151617181920212223242526
  1. {
  2. "compilerOptions": {
  3. "declaration": true,
  4. "importHelpers": true,
  5. "module": "commonjs",
  6. "outDir": "lib",
  7. "rootDir": "src",
  8. "strict": true,
  9. "target": "es2017",
  10. "experimentalDecorators": true,
  11. "emitDecoratorMetadata": true,
  12. "skipLibCheck": true,
  13. "sourceMap": true,
  14. "inlineSources": false,
  15. "strictPropertyInitialization": false,
  16. "baseUrl": ".",
  17. "paths": {
  18. "@polkadot/types/augment": [
  19. "../../../types/augment/all",
  20. "../../../types/augment-codec/augment-types.ts"
  21. ]
  22. }
  23. },
  24. "include": ["src/**/*"],
  25. "exclude": ["node_modules"]
  26. }