2022-05-27 15:19:49 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "esnext",
|
|
|
|
|
"jsx": "preserve",
|
2023-10-23 14:03:29 +00:00
|
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
|
|
|
|
|
"experimentalDecorators": true,
|
2022-06-04 07:07:46 +00:00
|
|
|
"baseUrl": ".",
|
2023-10-23 14:03:29 +00:00
|
|
|
"module": "esnext",
|
|
|
|
|
"moduleResolution": "node",
|
2022-06-04 07:07:46 +00:00
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["src/*"]
|
|
|
|
|
},
|
2023-10-23 14:03:29 +00:00
|
|
|
"types": ["node"],
|
|
|
|
|
"allowJs": true,
|
2022-06-04 07:07:46 +00:00
|
|
|
"strictNullChecks": false,
|
|
|
|
|
"noImplicitAny": false,
|
2023-10-23 14:03:29 +00:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"importHelpers": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"verbatimModuleSyntax": true,
|
|
|
|
|
"skipLibCheck": true
|
2022-05-27 15:19:49 +00:00
|
|
|
},
|
|
|
|
|
"include": [
|
2022-06-04 07:16:56 +00:00
|
|
|
"src/App.vue",
|
2022-05-27 15:19:49 +00:00
|
|
|
"src/**/*.ts",
|
|
|
|
|
"src/**/*.tsx",
|
2022-06-06 06:35:32 +00:00
|
|
|
"src/**/*.vue",
|
|
|
|
|
"tests/**/*.ts",
|
2022-06-13 07:10:59 +00:00
|
|
|
"tests/**/*.tsx",
|
2022-07-12 02:31:38 +00:00
|
|
|
"components.d.ts",
|
2022-08-16 02:57:15 +00:00
|
|
|
"auto-imports.d.ts",
|
|
|
|
|
"tests/*.ts"
|
2022-05-27 15:19:49 +00:00
|
|
|
]
|
|
|
|
|
}
|