vue3-vant-mobile/tsconfig.json

38 lines
844 B
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",
"moduleResolution": "node",
2022-06-04 07:07:46 +00:00
"paths": {
"@/*": ["src/*"]
},
"types": ["node"],
"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",
"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
]
}