20 lines
388 B
JSON
20 lines
388 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"include": [
|
|
"server.js",
|
|
"server/**/*.js",
|
|
"server/**/*.ts",
|
|
"database/**/*.ts",
|
|
"app/contexts/**/*.ts",
|
|
"vite.config.ts"
|
|
],
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"strict": true,
|
|
"types": ["node"],
|
|
"lib": ["ES2022"],
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"moduleResolution": "bundler"
|
|
}
|
|
}
|