platform/dev/prod/tsconfig.json
Andrey Sobolev d8ef26dc74
UBERF-5933: Add 404 handling in case of resource direct requests (#4983)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2024-03-15 17:02:00 +07:00

20 lines
402 B
JSON

{
"compilerOptions": {
"outDir": "./dist/",
"noImplicitAny": true,
"module": "esnext",
"target": "es2021",
"allowJs": true,
"declaration": true,
"sourceMap": true,
"skipLibCheck": true,
"moduleResolution": "node",
"declarationDir": "./types",
"allowSyntheticDefaultImports": true,
"lib": [
"es2016",
"dom",
"ES2021.String"
]
}
}