standardized tsconfigs

This commit is contained in:
Bojan Kucera 2025-06-03 11:49:45 -04:00
parent 1b71fc87ab
commit 2f5309d80f
17 changed files with 262 additions and 76 deletions

12
tsconfig.app.json Normal file
View file

@ -0,0 +1,12 @@
{
"extends": "../../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"module": "ESNext",
"moduleResolution": "bundler",
"types": ["bun-types"]
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}