2021-09-26 22:09:33 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": ".",
|
|
|
|
"module": "esnext",
|
2021-12-25 08:24:46 +00:00
|
|
|
"target": "es2015",
|
2021-09-26 22:09:33 +00:00
|
|
|
"moduleResolution": "Node",
|
|
|
|
"strict": true,
|
2021-10-12 03:30:07 +00:00
|
|
|
"allowJs": true,
|
2021-09-26 22:09:33 +00:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"declaration": true,
|
|
|
|
"emitDeclarationOnly": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"declarationDir": "types",
|
2022-04-05 02:31:31 +00:00
|
|
|
"lib": ["ESNext", "DOM"],
|
2021-09-26 22:09:33 +00:00
|
|
|
},
|
2022-04-05 02:31:31 +00:00
|
|
|
"include": ["src/**/*", "shims-vue.d.ts"],
|
2021-12-25 08:31:10 +00:00
|
|
|
"exclude": ["node_modules"]
|
2021-11-19 05:09:08 +00:00
|
|
|
}
|