2025-11-18 09:10:47 +08:00
|
|
|
{
|
2025-11-24 17:53:48 +08:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"target": "ES2020",
|
|
|
|
|
"outDir": "out",
|
|
|
|
|
"lib": [
|
|
|
|
|
"ES2020"
|
|
|
|
|
],
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"rootDir": "src",
|
|
|
|
|
"strict": false,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"typeRoots": [
|
|
|
|
|
"./node_modules/@types"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules",
|
|
|
|
|
".vscode-test"
|
|
|
|
|
]
|
2025-11-18 09:10:47 +08:00
|
|
|
}
|