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.

tsconfig.node.json 479B

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