tsconfig.json 785 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "jsx": "preserve",
  5. "lib": ["esnext", "dom", "dom.iterable", "scripthost"],
  6. "experimentalDecorators": true,
  7. "baseUrl": ".",
  8. "module": "esnext",
  9. "moduleResolution": "Bundler",
  10. "paths": {
  11. "@/*": ["src/*"]
  12. },
  13. "types": [
  14. "unplugin-vue-router/client",
  15. ],
  16. "allowJs": true,
  17. "strictNullChecks": false,
  18. "noImplicitAny": false,
  19. "noUnusedLocals": true,
  20. "noUnusedParameters": true,
  21. "importHelpers": true,
  22. "sourceMap": true,
  23. "allowSyntheticDefaultImports": true,
  24. "esModuleInterop": true,
  25. "verbatimModuleSyntax": true,
  26. "skipLibCheck": true
  27. },
  28. "include": [
  29. "src/App.vue",
  30. "src/**/*.ts",
  31. "src/**/*.tsx",
  32. "src/**/*.vue",
  33. ]
  34. }