2025-08-02 22:50:19 +00:00
|
|
|
{
|
|
|
|
|
"$schema": "https://json.schemastore.org/tsconfig.json",
|
2026-06-30 17:18:56 +00:00
|
|
|
"extends": "@tsconfig/bun/tsconfig.json",
|
2025-08-02 22:50:19 +00:00
|
|
|
"compilerOptions": {
|
2026-04-13 17:33:13 +00:00
|
|
|
"rootDir": "src",
|
2025-08-02 22:50:19 +00:00
|
|
|
"outDir": "dist",
|
|
|
|
|
"declaration": true,
|
2026-07-01 03:30:56 +00:00
|
|
|
"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
|
|
|
}
|