tsconfig.json 753 B

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