| 1 |
{ |
| 2 |
"compilerOptions": { |
| 3 |
"target": "esnext", |
| 4 |
"module": "esnext", |
| 5 |
"strict": true, |
| 6 |
"jsx": "preserve", |
| 7 |
"importHelpers": true, |
| 8 |
"moduleResolution": "node", |
| 9 |
"allowJs": true, |
| 10 |
"skipLibCheck": true, |
| 11 |
"allowSyntheticDefaultImports": true, |
| 12 |
"esModuleInterop": true, |
| 13 |
"sourceMap": true, |
| 14 |
"baseUrl": ".", |
| 15 |
"types": ["@types/node"], |
| 16 |
"lib": ["esnext", "dom", "dom.iterable", "scripthost"], |
| 17 |
"noImplicitAny": true, |
| 18 |
"resolveJsonModule": true, |
| 19 |
"paths": { |
| 20 |
"@/*": ["src/*"], |
| 21 |
} |
| 22 |
}, |
| 23 |
"include": [ |
| 24 |
"src/**/*.ts", |
| 25 |
"src/**/*.vue" |
| 26 |
], |
| 27 |
"compileOnSave": true, |
| 28 |
"exclude": ["node_modules"] |
| 29 |
} |
| 30 |
|