tsconfig.json 723 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "moduleResolution": "node",
  5. "esModuleInterop": true,
  6. "declaration": true,
  7. "removeComments": true,
  8. "emitDecoratorMetadata": true,
  9. "experimentalDecorators": true,
  10. "allowSyntheticDefaultImports": true,
  11. "target": "ES2023",
  12. "sourceMap": true,
  13. "outDir": "./dist",
  14. "baseUrl": "./",
  15. "incremental": true,
  16. "skipLibCheck": true,
  17. "strictNullChecks": true,
  18. "forceConsistentCasingInFileNames": true,
  19. "noImplicitAny": false,
  20. "strictBindCallApply": false,
  21. "noFallthroughCasesInSwitch": false,
  22. "rootDir": "src"
  23. },
  24. "exclude": [
  25. "node_modules",
  26. "dist",
  27. "scripts",
  28. "test",
  29. "**/*spec.ts"
  30. ]
  31. }