金币系统前端
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.

41 lines
966 B

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