2025-07-31 13:00:29 +08:00
|
|
|
{
|
|
|
|
|
"$schema": "https://json.schemastore.org/tsconfig.json",
|
|
|
|
|
"extends": "@tsconfig/node22/tsconfig.json",
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"outDir": "dist",
|
2025-08-09 08:05:50 +08:00
|
|
|
"module": "nodenext",
|
2025-07-31 13:00:29 +08:00
|
|
|
"declaration": true,
|
2025-08-09 08:05:50 +08:00
|
|
|
"moduleResolution": "nodenext",
|
2026-02-18 23:03:24 +08:00
|
|
|
"lib": ["es2022", "dom", "dom.iterable"],
|
2026-02-20 14:10:38 +08:00
|
|
|
"composite": true,
|
|
|
|
|
"rootDir": "src"
|
2025-07-31 13:00:29 +08:00
|
|
|
},
|
2026-02-18 23:03:24 +08:00
|
|
|
"include": ["src"]
|
2025-07-31 13:00:29 +08:00
|
|
|
}
|