39 lines
881 B
JSON
39 lines
881 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "esnext",
|
||
|
"jsx": "preserve",
|
||
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
|
||
|
"experimentalDecorators": true,
|
||
|
"baseUrl": ".",
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"paths": {
|
||
|
"@/*": ["src/*"]
|
||
|
},
|
||
|
"types": ["node"],
|
||
|
"allowJs": true,
|
||
|
"strictNullChecks": false,
|
||
|
"noImplicitAny": false,
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"importHelpers": true,
|
||
|
"sourceMap": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"esModuleInterop": true,
|
||
|
"verbatimModuleSyntax": true,
|
||
|
"skipLibCheck": true
|
||
|
},
|
||
|
"include": [
|
||
|
"src/App.vue",
|
||
|
"src/**/*.ts",
|
||
|
"src/**/*.tsx",
|
||
|
"src/**/*.vue",
|
||
|
"tests/**/*.ts",
|
||
|
"tests/**/*.tsx",
|
||
|
"src/components.d.ts",
|
||
|
"src/auto-imports.d.ts",
|
||
|
"src/typed-router.d.ts",
|
||
|
"tests/*.ts"
|
||
|
]
|
||
|
}
|