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.

42 lines
999 B

7 months ago
7 months ago
  1. {
  2. "compilerOptions": {
  3. "ignoreDeprecations": "6.0",
  4. "strict": true,
  5. "skipLibCheck": true,
  6. "composite": true,
  7. "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
  8. "target": "ES2020",
  9. "noEmitOnError": false,
  10. "useDefineForClassFields": true,
  11. "module": "ESNext",
  12. "lib": ["ES2020", "DOM", "DOM.Iterable"],
  13. /* Bundler mode */
  14. "moduleResolution": "Bundler",
  15. "allowImportingTsExtensions": true,
  16. "isolatedModules": true,
  17. "moduleDetection": "force",
  18. "noEmit": true,
  19. "emitDeclarationOnly": false,
  20. "jsx": "preserve",
  21. /* Linting */
  22. // "strict": true,
  23. "noUnusedLocals": true,
  24. "noUnusedParameters": true,
  25. "noFallthroughCasesInSwitch": true,
  26. "noUncheckedSideEffectImports": true,
  27. "noImplicitAny": false,
  28. "baseUrl": ".",
  29. "paths": {
  30. "@/*": ["src/*"]
  31. }
  32. },
  33. "include": [
  34. "src/**/*.ts",
  35. "src/**/*.tsx",
  36. "src/**/*.d.ts",
  37. "src/**/*.vue",
  38. "src/util/http.js"
  39. ]
  40. }