tsconfig.node.json 602 B

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