indexer-tsconfig.json 499 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "declaration": true,
  4. "importHelpers": true,
  5. "module": "commonjs",
  6. "strict": true,
  7. "target": "es2017",
  8. "experimentalDecorators": true,
  9. "emitDecoratorMetadata": true,
  10. "skipLibCheck": true,
  11. "sourceMap": true,
  12. "inlineSources": false,
  13. "strictPropertyInitialization": false,
  14. "baseUrl": ".",
  15. "paths": {
  16. "@polkadot/types/augment": ["../../../types/augment-codec/augment-types.ts"]
  17. }
  18. },
  19. "exclude": ["node_modules"]
  20. }