You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
630 B

  1. {
  2. "compilerOptions": {
  3. "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
  4. "target": "ES2022",
  5. "lib": ["ES2025"],
  6. "module": "ESNext",
  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. "noUnusedParameters": true,
  18. "erasableSyntaxOnly": true,
  19. "noFallthroughCasesInSwitch": true,
  20. "noUncheckedSideEffectImports": true
  21. },
  22. "include": ["vite.config.ts"]
  23. }