2025-11-10 16:11:21 +08:00
|
|
|
{
|
|
|
|
|
"extends": "../../tsconfig.node.json",
|
|
|
|
|
"compilerOptions": {
|
2025-11-15 01:23:40 +08:00
|
|
|
"module": "NodeNext",
|
|
|
|
|
"moduleResolution": "NodeNext",
|
|
|
|
|
"verbatimModuleSyntax": false,
|
2025-11-10 16:11:21 +08:00
|
|
|
"outDir": "dist",
|
|
|
|
|
"rootDir": "src",
|
|
|
|
|
"tsBuildInfoFile": "./dist/.tsbuildinfo",
|
|
|
|
|
"composite": true,
|
|
|
|
|
"noEmit": false,
|
|
|
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
|
|
|
"allowImportingTsExtensions": false,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true
|
|
|
|
|
},
|
|
|
|
|
"include": ["src"]
|
|
|
|
|
}
|