opencode_offline/packages/sdk/js/tsconfig.json

22 lines
398 B
JSON
Raw Normal View History

2025-07-31 13:00:29 +08:00
{
"$schema": "https://json.schemastore.org/tsconfig.json",
"extends": "@tsconfig/node22/tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"module": "nodenext",
2025-07-31 13:00:29 +08:00
"declaration": true,
"moduleResolution": "nodenext",
2025-08-03 06:50:19 +08:00
"lib": [
"es2022",
"dom",
"dom.iterable"
2025-08-03 15:54:17 +08:00
],
"customConditions": [
"development"
2025-08-03 06:50:19 +08:00
]
2025-07-31 13:00:29 +08:00
},
"include": [
"src"
]
}