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