aboutsummaryrefslogtreecommitdiffstats
path: root/tsconfig.json
diff options
context:
space:
mode:
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"]
}