tsconfig.json 646 B

12345678910111213141516171819202122232425262728
  1. {
  2. "compilerOptions": {
  3. "declaration": true,
  4. "importHelpers": true,
  5. "module": "commonjs",
  6. "outDir": "lib",
  7. "rootDir": "src",
  8. "strict": true,
  9. "strictNullChecks": true,
  10. "target": "es2017",
  11. "skipLibCheck": true,
  12. "baseUrl": ".",
  13. "paths": {
  14. "@polkadot/types/augment": ["../types/augment-codec/augment-types.ts"],
  15. "@polkadot/api/augment": ["../types/augment-codec/augment-api.ts"],
  16. },
  17. "esModuleInterop": true,
  18. "types" : [ "node", "mocha" ],
  19. "noUnusedLocals": true,
  20. "resolveJsonModule": true,
  21. "useUnknownInCatchVariables": false
  22. },
  23. "include": [
  24. "src/**/*"
  25. ]
  26. }