brackt/tsconfig.node.json

18 lines
349 B
JSON

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