2025-10-10 23:04:50 -07:00
|
|
|
{
|
|
|
|
|
"extends": "./tsconfig.json",
|
2025-10-16 18:15:04 -07:00
|
|
|
"include": [
|
|
|
|
|
"server/**/*.ts",
|
|
|
|
|
"database/**/*.ts",
|
|
|
|
|
"app/contexts/**/*.ts",
|
2025-10-25 10:14:36 -07:00
|
|
|
"app/models/**/*.ts",
|
|
|
|
|
"app/lib/**/*.ts",
|
2025-11-13 13:24:03 -08:00
|
|
|
"app/types/**/*.ts",
|
2025-10-16 18:15:04 -07:00
|
|
|
"vite.config.ts"
|
|
|
|
|
],
|
2025-10-16 18:18:51 -07:00
|
|
|
"exclude": [
|
|
|
|
|
"**/*.js"
|
|
|
|
|
],
|
2025-10-10 23:04:50 -07:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"composite": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"types": ["node"],
|
|
|
|
|
"lib": ["ES2022"],
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"module": "ES2022",
|
|
|
|
|
"moduleResolution": "bundler"
|
|
|
|
|
}
|
|
|
|
|
}
|