tsconfig.node.json 729 B

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