2021-01-06 19:52:14 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-04-09 06:37:58 +08:00
|
|
|
"strict": true,
|
2021-01-16 00:54:31 +08:00
|
|
|
"jsx": "vue",
|
2021-01-06 19:52:14 +08:00
|
|
|
"outDir": "./dist",
|
2022-02-06 03:36:45 +08:00
|
|
|
"target": "esnext", // es2017, esnext,es6
|
|
|
|
"module": "esnext", // commonjs, es6
|
2021-01-06 19:52:14 +08:00
|
|
|
"lib": [ // es2015
|
2021-01-16 00:54:31 +08:00
|
|
|
"ESNext",
|
|
|
|
"DOM"
|
2021-01-06 19:52:14 +08:00
|
|
|
],
|
2021-04-09 06:37:58 +08:00
|
|
|
"declaration": false,
|
2021-01-06 19:52:14 +08:00
|
|
|
"sourceMap": true,
|
|
|
|
"noImplicitAny": true,
|
2021-01-16 00:54:31 +08:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2021-01-06 19:52:14 +08:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"typeRoots": [
|
2021-01-16 00:54:31 +08:00
|
|
|
"./node_modules/@types",
|
2021-01-06 19:52:14 +08:00
|
|
|
"./node_modules/vite/dist/"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"exclude": [
|
2021-01-16 00:54:31 +08:00
|
|
|
"node_modules"
|
2021-01-06 19:52:14 +08:00
|
|
|
],
|
|
|
|
"include": [
|
|
|
|
"./**/*.ts",
|
2021-01-16 00:54:31 +08:00
|
|
|
"./src/**/*.vue",
|
|
|
|
"src/App.tsx",
|
|
|
|
"src/orig.tsx"
|
2021-04-09 06:37:58 +08:00
|
|
|
],
|
|
|
|
"types": [
|
2022-02-06 03:36:45 +08:00
|
|
|
"vue-sweetalert2",
|
|
|
|
"vite/client",
|
2021-04-09 06:37:58 +08:00
|
|
|
],
|
|
|
|
}
|