tsconfig.json 369 B

12345678910111213141516
  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. "paths": {
  13. "@polkadot/types/augment": ["../../types/src/definitions/augment-types.ts"]
  14. }
  15. }
  16. }