1
0
Fork 0
mirror of https://gitlab.com/futo-org/fcast.git synced 2025-06-24 21:25:23 +00:00
fcast/receivers/electron/tsconfig.json

15 lines
352 B
JSON
Raw Normal View History

2024-10-21 20:51:07 +00:00
{
2023-06-20 08:45:01 +02:00
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": false,
"emitDecoratorMetadata": true,
2024-11-04 09:17:20 -06:00
"esModuleInterop": true,
2023-06-20 08:45:01 +02:00
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false,
"outDir": "dist"
},
2024-10-21 20:51:07 +00:00
"exclude": [ "node_modules", "test" ]
2023-06-20 08:45:01 +02:00
}