tsconfig.json 674 B

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