tsconfig.app.json 523 B

123456789101112131415161718192021222324
  1. {
  2. "extends": "@vue/tsconfig/tsconfig.dom.json",
  3. "compilerOptions": {
  4. "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
  5. /* Linting */
  6. "strict": true,
  7. "noUnusedLocals": true,
  8. "noUnusedParameters": true,
  9. "erasableSyntaxOnly": false,
  10. "noFallthroughCasesInSwitch": true,
  11. "noUncheckedSideEffectImports": true,
  12. "jsxImportSource": "vue",
  13. "jsx": "preserve",
  14. "experimentalDecorators": true,
  15. "baseUrl": ".",
  16. "paths": {
  17. "@/*": ["src/*"]
  18. }
  19. }
  20. }