tsconfig.node.json 653 B

1234567891011121314151617181920212223242526
  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. "erasableSyntaxOnly": true,
  20. "noFallthroughCasesInSwitch": true,
  21. "noUncheckedSideEffectImports": true
  22. },
  23. "include": ["vite.config.ts"]
  24. }