Files
FEDEO/tsconfig.json
2025-12-07 23:23:18 +01:00

16 lines
367 B
JSON

{
"compilerOptions": {
"target": "ES2021",
"lib": ["ES2021"],
"module": "commonjs",
"outDir": "dist",
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"noEmitOnError": false,
"forceConsistentCasingInFileNames": true,
"rootDir": "."
},
"include": ["src","db","*.ts"],
"exclude": ["node_modules", "dist"]
}