tsconfig.node.json 484 B

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