tsconfig.node.json 486 B

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