2026-05-05 19:17:44 +08:00
|
|
|
{
|
|
|
|
|
"compileOnSave": true,
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ESNext",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"inlineSourceMap": false,
|
2026-05-18 13:25:01 +08:00
|
|
|
"sourceMap": true,
|
2026-05-05 19:17:44 +08:00
|
|
|
"noImplicitThis": false,
|
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
|
"stripInternal": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"pretty": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"outDir": "dist",
|
|
|
|
|
"rootDir": "src",
|
|
|
|
|
"composite": false,
|
|
|
|
|
"useDefineForClassFields": false,
|
|
|
|
|
"strict": false,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": false,
|
|
|
|
|
"lib": ["ESNext", "DOM"]
|
|
|
|
|
},
|
|
|
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.json"],
|
|
|
|
|
"exclude": ["dist", "node_modules", "src/**/*.test.ts", "test"]
|
|
|
|
|
}
|