2022-04-09 17:17:36 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es6",
|
|
|
|
"module": "commonjs",
|
|
|
|
"declaration": true,
|
|
|
|
"outDir": "./lib",
|
|
|
|
"strict": true,
|
|
|
|
"experimentalDecorators": true,
|
2022-04-09 17:31:47 +00:00
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"lib": ["ESNext"]
|
2022-04-09 17:17:36 +00:00
|
|
|
},
|
|
|
|
"include": ["src"],
|
2022-04-09 17:31:47 +00:00
|
|
|
"exclude": ["node_modules", "src/app/resources", "../extollo/lib"]
|
2022-04-09 17:17:36 +00:00
|
|
|
}
|
2022-04-09 17:31:47 +00:00
|
|
|
|