A8000
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
567 B

8 months ago
7 months ago
8 months ago
7 months ago
8 months ago
8 months ago
  1. {
  2. "extends": "./tsconfig.json",
  3. "compilerOptions": {
  4. "composite":true,
  5. "target": "ES2022",
  6. "lib": ["ES2023"],
  7. "module": "ESNext",
  8. "skipLibCheck": true,
  9. /* Bundler mode */
  10. "moduleResolution": "bundler",
  11. "allowImportingTsExtensions": true,
  12. "isolatedModules": true,
  13. "moduleDetection": "force",
  14. "noEmit": true,
  15. /* Linting */
  16. "strict": true,
  17. "noUnusedLocals": true,
  18. "noUnusedParameters": true,
  19. "noFallthroughCasesInSwitch": true
  20. },
  21. "include": ["vite.config.ts"],
  22. "exclude": ["components.d.ts"]
  23. }