tsconfig.node.json 558 B

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