tsconfig.node.json 579 B

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