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.

35 lines
766 B

8 months ago
7 months ago
8 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": "ES2020",
  6. "useDefineForClassFields": true,
  7. "module": "ESNext",
  8. "lib": ["ES2020", "DOM", "DOM.Iterable"],
  9. "skipLibCheck": true,
  10. /* Bundler mode */
  11. "moduleResolution": "bundler",
  12. "allowImportingTsExtensions": true,
  13. "isolatedModules": true,
  14. "moduleDetection": "force",
  15. "noEmit": true,
  16. "jsx": "preserve",
  17. /* Linting */
  18. "strict": true,
  19. "noUnusedLocals": true,
  20. "noUnusedParameters": true,
  21. "noFallthroughCasesInSwitch": true,
  22. "baseUrl": ".",
  23. "paths": {
  24. "@/*": ["src/*"]
  25. }
  26. },
  27. "include": [
  28. "src/**/*.ts",
  29. "src/**/*.tsx",
  30. "src/**/*.vue",
  31. "src/utils/longPressDirective.ts"
  32. ]
  33. }