tsconfig.node.json 587 B

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