vue3-vant-mobile/tsconfig.json

35 lines
780 B
JSON
Raw Normal View History

2022-05-27 15:19:49 +00:00
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"jsx": "preserve",
2022-06-04 07:07:46 +00:00
"importHelpers": true,
"moduleResolution": "node",
"allowJs": true,
2022-05-27 15:19:49 +00:00
"esModuleInterop": true,
2022-06-04 07:07:46 +00:00
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
2022-06-06 06:35:32 +00:00
"types": [],
2022-06-04 07:07:46 +00:00
"paths": {
"@/*": ["src/*"]
},
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
"strictNullChecks": false,
"experimentalDecorators": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"noImplicitAny": false,
"skipLibCheck": true,
"importsNotUsedAsValues": "preserve"
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"
2022-05-27 15:19:49 +00:00
]
}