tsconfig.json 613 B

123456789101112131415161718192021222324
  1. {
  2. "compilerOptions": {
  3. "composite": true,
  4. "rootDir": "./packages/",
  5. "outDir": "./build",
  6. "allowJs": true,
  7. "target": "es2017",
  8. "module": "commonjs",
  9. "esModuleInterop": true,
  10. "baseUrl": ".",
  11. "skipLibCheck": true,
  12. "types": ["node", "mocha"],
  13. "paths": {
  14. "@polkadot/types/augment": ["../types/augment-codec/augment-types.ts"],
  15. "@polkadot/api/augment": ["../types/augment-codec/augment-api.ts"]
  16. }
  17. },
  18. "files": [],
  19. "exclude": ["**/node_modules/*", "build"],
  20. "references": [
  21. { "path": "packages/cli" }
  22. // { "path": "packages/storage" }
  23. ]
  24. }