tsconfig.node.json 613 B

123456789101112131415161718192021222324252627
  1. {
  2. "compilerOptions": {
  3. "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
  4. "target": "ES2022",
  5. "lib": [
  6. "ES2023"
  7. ],
  8. "module": "ESNext",
  9. "skipLibCheck": true,
  10. /* Bundler mode */
  11. "moduleResolution": "Bundler",
  12. "allowImportingTsExtensions": true,
  13. "isolatedModules": true,
  14. "moduleDetection": "force",
  15. "noEmit": true,
  16. /* Linting */
  17. "strict": true,
  18. "noUnusedLocals": true,
  19. "noUnusedParameters": true,
  20. "noFallthroughCasesInSwitch": true,
  21. "noUncheckedSideEffectImports": true,
  22. },
  23. "include": [
  24. "vite.config.ts"
  25. ]
  26. }