2021-09-27 06:09:33 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": ".",
|
|
|
|
"module": "esnext",
|
|
|
|
"target": "es2015",
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
"strict": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"declaration": true,
|
|
|
|
"emitDeclarationOnly": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"declarationDir": "types",
|
2021-09-29 13:31:24 +08:00
|
|
|
"lib": [
|
|
|
|
"ESNext",
|
|
|
|
"DOM"
|
|
|
|
],
|
2021-09-27 06:09:33 +08:00
|
|
|
"paths": {
|
2021-09-29 13:31:24 +08:00
|
|
|
"/@src/*": [
|
|
|
|
"./src/*"
|
|
|
|
]
|
2021-09-27 06:09:33 +08:00
|
|
|
}
|
|
|
|
},
|
2021-09-29 13:31:24 +08:00
|
|
|
"include": [
|
|
|
|
"src/**/*",
|
|
|
|
"shims-vue.d.ts"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
|
|
|
]
|
|
|
|
}
|