Extracted stack files

This commit is contained in:
ka-official
2026-03-25 20:56:28 +00:00
parent 37d0fa9ff3
commit 2d94c769a4
75 changed files with 14782 additions and 53 deletions

View File

@@ -1,9 +1,23 @@
{
"include": ["client/src/**/*", "shared/**/*", "server/**/*"],
"exclude": ["node_modules", "build", "dist", "**/*.test.ts"],
"compilerOptions": {
"target": "ESNext",
"incremental": true,
"tsBuildInfoFile": "./node_modules/typescript/tsbuildinfo",
"noEmit": true,
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"types": ["bun-types"]
"lib": ["esnext", "dom", "dom.iterable"],
"jsx": "preserve",
"esModuleInterop": true,
"skipLibCheck": true,
"allowImportingTsExtensions": true,
"moduleResolution": "bundler",
"baseUrl": ".",
"types": ["node", "vite/client"],
"paths": {
"@/*": ["./client/src/*"],
"@shared/*": ["./shared/*"]
}
}
}