tsconfig.json 605 B

1234567891011121314151617181920212223
  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. }
  23. }