2022-09-13 01:33:24 +00:00
|
|
|
{
|
2022-11-24 19:36:41 +00:00
|
|
|
"compilerOptions": {
|
2023-10-12 05:56:53 +00:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"es2017"
|
|
|
|
],
|
2022-11-24 19:36:41 +00:00
|
|
|
"target": "ES2017",
|
|
|
|
"module": "es2020",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"sourceMap": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2022-12-10 17:58:30 +00:00
|
|
|
"jsx": "preserve",
|
|
|
|
"useDefineForClassFields": true,
|
2022-12-10 18:59:36 +00:00
|
|
|
"noImplicitThis": true,
|
2023-10-12 05:56:53 +00:00
|
|
|
"noImplicitAny": true,
|
2023-04-19 02:19:05 +00:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"strictNullChecks": true
|
2022-12-10 20:31:17 +00:00
|
|
|
},
|
|
|
|
"vueCompilerOptions": {
|
|
|
|
"target": 2.7
|
2022-11-24 19:36:41 +00:00
|
|
|
}
|
2023-10-12 05:56:53 +00:00
|
|
|
}
|