tsconfig.node.json 597 B

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