2024-04-10 19:32:07 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-05-30 20:21:33 +08:00
|
|
|
"module": "node16",
|
|
|
|
|
2024-04-10 19:32:07 +08:00
|
|
|
"noImplicitReturns": true,
|
2024-08-14 17:05:07 +08:00
|
|
|
"noUnusedLocals": false,
|
2024-04-10 19:32:07 +08:00
|
|
|
"outDir": "build",
|
|
|
|
"sourceMap": true,
|
|
|
|
"strict": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"target": "es2022",
|
|
|
|
"lib": ["es2022"],
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"useDefineForClassFields": false,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"esModuleInterop": true,
|
2024-08-14 17:11:02 +08:00
|
|
|
"noImplicitAny": false,
|
2024-04-10 19:32:07 +08:00
|
|
|
"noImplicitOverride": true,
|
|
|
|
},
|
|
|
|
"compileOnSave": true,
|
|
|
|
"include": ["src"]
|
|
|
|
}
|