tsconfig.app.json 594 B

123456789101112131415161718
  1. {
  2. "extends": "@vue/tsconfig/tsconfig.dom.json",
  3. "include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
  4. "exclude": ["src/**/__tests__/*"],
  5. "compilerOptions": {
  6. // Extra safety for array and object lookups, but may have false positives.
  7. "noUncheckedIndexedAccess": true,
  8. // Path mapping for cleaner imports.
  9. "paths": {
  10. "@/*": ["./src/*"]
  11. },
  12. // `vue-tsc --build` produces a .tsbuildinfo file for incremental type-checking.
  13. // Specified here to keep it out of the root directory.
  14. "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo"
  15. }
  16. }