tsconfig.json 725 B

12345678910111213141516171819202122232425
  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. "resolveJsonModule": true,
  17. "paths": {
  18. "@polkadot/types/augment": ["../../types/augment/augment-types.ts"],
  19. "@polkadot/api/augment": ["../../types/augment/augment-api.ts"]
  20. // "query-node": [ "../generated/graphql-server/src" ],
  21. // "query-node/*": [ "../generated/graphql-server/src/*" ]
  22. }
  23. },
  24. "include": ["./src/**/*"]
  25. }