16 lines
369 B
JSON
16 lines
369 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"module": "commonjs",
|
||
|
|
"strict": false,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"target": "es2021", // 你可以设置目标版本
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"src",
|
||
|
|
"./package.json"
|
||
|
|
, "src/renderer/src/components/Book/Components/.vue" ]
|
||
|
|
}
|