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",
|
2025-09-27 16:10:56 +08:00
|
|
|
"lib": ["es2022", "dom", "dom.iterable"]
|
2025-07-31 13:00:29 +08:00
|
|
|
},
|
2025-11-01 03:07:36 +08:00
|
|
|
"include": ["src"],
|
|
|
|
|
"exclude": ["src/gen"]
|
2025-07-31 13:00:29 +08:00
|
|
|
}
|