tsconfig.json 690 B

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