cloudaxe-opencode/packages/plugin/tsconfig.json

13 lines
309 B
JSON
Raw Permalink Normal View History

2025-08-02 22:50:19 +00:00
{
"$schema": "https://json.schemastore.org/tsconfig.json",
"extends": "@tsconfig/bun/tsconfig.json",
2025-08-02 22:50:19 +00:00
"compilerOptions": {
"rootDir": "src",
2025-08-02 22:50:19 +00:00
"outDir": "dist",
"declaration": true,
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"noUncheckedIndexedAccess": false
2025-08-02 22:50:19 +00:00
},
2025-09-10 03:43:37 +00:00
"include": ["src"]
2025-08-02 22:50:19 +00:00
}