2021-04-15 04:08:16 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "esnext",
|
|
|
|
// this enables stricter inference for data properties on `this`
|
|
|
|
"strict": true,
|
|
|
|
"moduleResolution": "node",
|
2021-04-27 01:05:12 +08:00
|
|
|
|
|
|
|
// "esModuleInterop": true,
|
|
|
|
// "lib": ["esnext", "dom"],
|
|
|
|
// "types": ["vite/client"],
|
|
|
|
|
2021-04-22 20:09:44 +08:00
|
|
|
"sourceMap": true,
|
2021-04-27 01:05:12 +08:00
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"outDir": "types",
|
2021-04-15 04:08:16 +08:00
|
|
|
},
|
2021-04-22 20:09:44 +08:00
|
|
|
"include": ["src/**/*.ts", "src/**/*.vue"],
|
2021-04-27 01:05:12 +08:00
|
|
|
// "include": ["src/export.ts"],
|
|
|
|
// "exclude": ["src/App.vue", "src/main.ts"],
|
2021-04-15 04:08:16 +08:00
|
|
|
}
|