chore: tsconfig.json

This commit is contained in:
2026-07-01 17:45:10 +08:00
parent 7023179c22
commit c87fa66ba0
+30
View File
@@ -0,0 +1,30 @@
{
"compileOnSave": true,
"compilerOptions": {
"target": "es2018",
"module": "commonjs",
"moduleResolution": "node",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"inlineSourceMap": true,
"noImplicitThis": true,
"noUnusedLocals": false,
"stripInternal": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"pretty": true,
"declaration": false,
"noImplicitAny": false,
"typeRoots": [
"typings",
"./node_modules/@types",
],
"outDir": "dist",
"rootDir": "src",
},
"exclude": [
"dist",
"node_modules",
"test",
],
}