2025-10-10 23:04:50 -07:00
|
|
|
{
|
|
|
|
|
"extends": "./tsconfig.json",
|
2025-10-16 00:56:31 -07:00
|
|
|
"include": [
|
|
|
|
|
"server/**/*.ts",
|
|
|
|
|
"vite.config.ts",
|
|
|
|
|
"database/**/*.ts",
|
2025-10-16 10:10:10 -07:00
|
|
|
"app/contexts/**/*.ts",
|
|
|
|
|
"app/models/**/*.ts"
|
2025-10-16 00:56:31 -07:00
|
|
|
],
|
2025-10-10 23:04:50 -07:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"composite": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"types": ["node"],
|
|
|
|
|
"lib": ["ES2022"],
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"module": "ES2022",
|
|
|
|
|
"moduleResolution": "bundler"
|
|
|
|
|
}
|
|
|
|
|
}
|