aboutsummaryrefslogtreecommitdiffstats
path: root/tsconfig.json
diff options
context:
space:
mode:
authorJan Tuomi <jan@jantuomi.fi>2026-05-06 21:54:44 +0300
committerJan Tuomi <jan@jantuomi.fi>2026-05-06 21:54:44 +0300
commitf50f233ffd5c9a504de32a63a5695ce875f8e26f (patch)
treecf6669231ffbb7ceb1284061d46863d309bba780 /tsconfig.json
parent713ced9c68cd70a8e56e8ce5ed27cb9bbe3e55c4 (diff)
Remove bun, use tsx
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json6
1 files changed, 1 insertions, 5 deletions
diff --git a/tsconfig.json b/tsconfig.json
index a4d9078..30a75ac 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,9 +1,5 @@
{
"compilerOptions": {
- // This tsconfig is a minimal placeholder retained only for IDE tooling / editor intellisense.
- // The build pipeline uses `bun build` (see package.json scripts) to produce a single
- // CommonJS bundle at build/index.js suitable for running with plain `node`.
- // No type-check step is performed as part of the build.
"target": "ES2020",
"module": "CommonJS",
"moduleResolution": "Node",
@@ -13,5 +9,5 @@
"resolveJsonModule": true
},
"include": ["src/**/*"],
- "exclude": ["node_modules", "build"]
+ "exclude": ["node_modules"]
}