tsconfig.json 604 B

1234567891011121314151617181920212223
  1. {
  2. "compilerOptions": {
  3. "module": "Node16",
  4. "declaration": true,
  5. "removeComments": true,
  6. "emitDecoratorMetadata": true,
  7. "experimentalDecorators": true,
  8. "esModuleInterop": true,
  9. "allowSyntheticDefaultImports": true,
  10. "target": "ES2023",
  11. "sourceMap": true,
  12. "outDir": "./dist",
  13. "baseUrl": "./",
  14. "incremental": true,
  15. "skipLibCheck": true,
  16. "strictNullChecks": true,
  17. "forceConsistentCasingInFileNames": true,
  18. "noImplicitAny": false,
  19. "strictBindCallApply": false,
  20. "noFallthroughCasesInSwitch": false,
  21. "moduleResolution": "node16"
  22. }
  23. }