tsconfig.node.json 578 B

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