Files
BoxBrain/tsconfig.json
Shinwoo PARK c047c5a23d
Some checks failed
CI / verify (push) Failing after 3s
feat: bootstrap BoxBrain framework
2026-05-14 19:30:34 +09:00

20 lines
450 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"lib": ["ES2022"],
"types": ["bun-types"],
"strict": true,
"exactOptionalPropertyTypes": true,
"noUncheckedIndexedAccess": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "dist",
"skipLibCheck": true,
"ignoreDeprecations": "6.0"
},
"include": ["src", "tests"]
}