tsconfig.node.json 626 B

123456789101112131415161718192021222324252627
  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": "node",
  13. "isolatedModules": true,
  14. "moduleDetection": "force",
  15. "emitDeclarationOnly": true,
  16. /* Linting */
  17. "strict": true,
  18. "noUnusedLocals": true,
  19. "noUnusedParameters": true,
  20. "noFallthroughCasesInSwitch": true,
  21. "allowSyntheticDefaultImports": true,
  22. },
  23. "include": [
  24. "vite.config.ts",
  25. "build/**/*.ts",
  26. ]
  27. }