fix: update tsconfig.json for standalone release scripts

This commit is contained in:
Nathan Flurry 2026-01-27 15:45:36 -08:00
parent 3126fa21eb
commit 5604775506
3 changed files with 408 additions and 5 deletions

View file

@ -1,10 +1,14 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"types": ["node"],
"paths": {
"@/*": ["./src/*"]
}
"noEmit": true
},
"include": ["**/*.ts"],
"exclude": ["node_modules"]