tsconfig.node.json 615 B

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