2024-10-21 20:51:07 +00:00
|
|
|
{
|
2023-06-20 08:45:01 +02:00
|
|
|
"compilerOptions": {
|
2024-11-11 12:24:17 -06:00
|
|
|
"target": "ES2022",
|
|
|
|
"module": "ES2022",
|
2023-06-20 08:45:01 +02:00
|
|
|
"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,
|
2024-12-09 00:56:55 -06:00
|
|
|
"outDir": "dist",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"src/*": ["./src/*"],
|
|
|
|
"modules/*": ["./node_modules/*"],
|
|
|
|
"common/*": ["../common/web/*"],
|
|
|
|
}
|
2023-06-20 08:45:01 +02:00
|
|
|
},
|
2024-10-21 20:51:07 +00:00
|
|
|
"exclude": [ "node_modules", "test" ]
|
2023-06-20 08:45:01 +02:00
|
|
|
}
|