tsconfig.json 476 B

123456789101112131415161718
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "commonjs",
  5. "outDir": "dist",
  6. "rootDir": "src",
  7. "strict": true,
  8. "esModuleInterop": true,
  9. "forceConsistentCasingInFileNames": true,
  10. "skipLibCheck": true,
  11. "baseUrl": ".",
  12. "resolveJsonModule": true,
  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. }