Files
agent/packages/uhk-web/tsconfig.json
Róbert Kiss be3e116130 build: Configure AOT (#394)
* build: Configure AOT

* build: Fix appveyor ENV settings
2017-08-26 00:56:28 +02:00

24 lines
472 B
JSON

{
"compilerOptions": {
"outDir": "../uhk-agent/dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "commonjs",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2015.iterable",
"dom",
"es2016"
],
"paths": {
"@angular/*": ["../node_modules/@angular/*"]
}
}
}