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

28 lines
756 B

4 months ago
4 months ago
  1. {
  2. "compilerOptions": {
  3. "composite": true,
  4. "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
  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. "noUncheckedSideEffectImports": true,
  23. "noImplicitAny": false,
  24. },
  25. "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"]
  26. }