tsconfig.app.json
597 bytes
| 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 | |
| 9 | // Path mapping for cleaner imports. |
| 10 | "paths": { |
| 11 | "@/*": ["./src/*"] |
| 12 | }, |
| 13 | |
| 14 | // `vue-tsc --build` produces a .tsbuildinfo file for incremental type-checking. |
| 15 | // Specified here to keep it out of the root directory. |
| 16 | "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo" |
| 17 | } |
| 18 | } |
| 19 | |