Files
PrivateChat/server/tsconfig.json

16 lines
334 B
JSON
Raw Permalink Normal View History

2026-03-09 19:35:08 +01:00
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"rootDir": "src",
"outDir": "dist",
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"types": ["node"]
},
"include": ["src/**/*.ts"]
}