vite-vue2-starter/tsconfig.json

43 lines
784 B
JSON
Raw Normal View History

2021-02-26 17:05:10 +08:00
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
2022-01-28 03:18:13 +08:00
"types": [
"unplugin-vue2-script-setup/types",
"@vueuse/core"
],
2021-02-26 17:05:10 +08:00
"paths": {
2022-01-28 03:18:13 +08:00
"@/*": ["src/*"]
2021-02-26 17:05:10 +08:00
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
2022-01-28 03:18:13 +08:00
"src/**/*.d.ts",
2021-02-26 17:05:10 +08:00
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": [
"node_modules"
2022-01-28 03:18:13 +08:00
],
"vueCompilerOptions": {
"experimentalCompatMode": 2
}
2021-02-26 17:05:10 +08:00
}