tsconfig.json 715 B

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