vue3-vant-mobile/tsconfig.json

45 lines
1.0 KiB
JSON
Raw Normal View History

2022-05-27 15:19:49 +00:00
{
"compilerOptions": {
"target": "esnext",
"jsx": "preserve",
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
"experimentalDecorators": true,
2022-06-04 07:07:46 +00:00
"baseUrl": ".",
"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
],
"allowJs": true,
2022-06-04 07:07:46 +00:00
"strictNullChecks": false,
"noImplicitAny": false,
"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",
"tests/**/*.tsx",
"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
]
}