blob: a4d9078c7f09c37c5db2bc0f06a76b6db522333b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
"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",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "build"]
}
|