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",
|
2024-03-08 07:43:12 +00:00
|
|
|
"moduleResolution": "Bundler",
|
2022-06-04 07:07:46 +00:00
|
|
|
"paths": {
|
2024-08-26 08:20:12 +00:00
|
|
|
"@/*": ["src/*"],
|
|
|
|
|
"~root/*": ["./*"]
|
2022-06-04 07:07:46 +00:00
|
|
|
},
|
2024-02-26 17:03:41 +00:00
|
|
|
"types": [
|
|
|
|
|
"node",
|
|
|
|
|
"unplugin-vue-router/client",
|
2024-03-29 05:36:45 +00:00
|
|
|
"vite-plugin-pwa/client",
|
|
|
|
|
"@intlify/unplugin-vue-i18n/messages"
|
2024-02-26 17:03:41 +00:00
|
|
|
],
|
2023-10-23 14:03:29 +00:00
|
|
|
"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",
|
2024-12-18 05:09:28 +00:00
|
|
|
"src/types/components.d.ts",
|
|
|
|
|
"src/types/auto-imports.d.ts",
|
|
|
|
|
"src/types/typed-router.d.ts",
|
2022-08-16 02:57:15 +00:00
|
|
|
"tests/*.ts"
|
2022-05-27 15:19:49 +00:00
|
|
|
]
|
|
|
|
|
}
|