tsconfig.node.json 725 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "compilerOptions": {
  3. "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
  4. "target": "ES2023",
  5. "lib": [
  6. "ES2023"
  7. ],
  8. "module": "ESNext",
  9. "types": [
  10. "node"
  11. ],
  12. "skipLibCheck": true,
  13. "baseUrl": ".",
  14. "paths": {
  15. "@/*": [
  16. "./src/*"
  17. ]
  18. },
  19. "moduleResolution": "bundler",
  20. "allowImportingTsExtensions": true,
  21. "verbatimModuleSyntax": true,
  22. "moduleDetection": "force",
  23. "noEmit": true,
  24. "strict": true,
  25. "noUnusedLocals": true,
  26. "noUnusedParameters": true,
  27. "erasableSyntaxOnly": true,
  28. "noFallthroughCasesInSwitch": true,
  29. "noUncheckedSideEffectImports": true
  30. },
  31. "include": [
  32. "vite.config.ts"
  33. ]
  34. }