tsconfig.json 679 B

123456789101112131415161718192021222324252627
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "CommonJS",
  5. "declaration": true,
  6. "allowSyntheticDefaultImports": true,
  7. "moduleResolution": "Node",
  8. "sourceMap": true,
  9. "outDir": "dist",
  10. "strict": true,
  11. "alwaysStrict": true,
  12. "strictNullChecks": true,
  13. "strictPropertyInitialization": true,
  14. "noImplicitAny": true,
  15. "noImplicitThis": true,
  16. "noImplicitReturns": true,
  17. "noUnusedLocals": true,
  18. "noFallthroughCasesInSwitch": true,
  19. "esModuleInterop": true,
  20. "baseUrl": ".",
  21. "paths": {
  22. "*": ["node_modules/*", "src/*"]
  23. }
  24. },
  25. "exclude": ["node_modules", "dist"],
  26. "include": ["*.ts", "**/*.ts"]
  27. }