feat(c4): add defuser item and improve C4 mechanics

This commit is contained in:
2026-01-18 12:48:46 +08:00
parent 498022de1d
commit 7586b628f0
5 changed files with 103 additions and 68 deletions

View File

@@ -1,14 +1,16 @@
{
"$schema": "https://www.schemastore.org/jsconfig.json",
"compilerOptions": {
"lib": ["ES5", "ES2015"],
"target": "ES2015",
"module": "commonjs",
"strict": true,
"checkJs": true,
"skipDefaultLibCheck": true,
"moduleResolution": "classic",
"composite": true,
"isolatedModules": true,
"lib": ["ES5", "ES2015"],
"incremental": true,
"target": "ES2015",
"skipLibCheck": true,
"noImplicitAny": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true
"rootDir": ".",
"allowJs": true
}
}