alfresco-content-app/tsconfig.json
Denys Vuika 9db1c2989f
shared library (#1080)
* shared project scaffold

* rules package

* move evaluators to shared lib

* add rxjs peer dependency

* use dedicated material namespaces

* create store package, move actions

* move selectors to shared library

* move generic effects to shared lib

* move routing extensions

* minor code reorg

* fix unit tests

* move content-api service

* move permission service

* update tests

* update plint config

* move page layout

* css variables

* use dedicated css property

* move generic error component to shared lib

* fix test
2019-04-25 14:56:54 +01:00

34 lines
920 B
JSON

{
"compileOnSave": false,
"compilerOptions": {
"importHelpers": true,
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noUnusedLocals": true,
"target": "es5",
"typeRoots": ["node_modules/@types"],
"lib": ["es2018", "dom"],
"module": "es2015",
"baseUrl": "./",
"paths": {
"@alfresco/adf-office-services-ext": [
"dist/@alfresco/adf-office-services-ext"
],
"@alfresco/adf-office-services-ext/*": [
"dist/@alfresco/adf-office-services-ext/*"
],
"@alfresco/aca-shared": ["dist/@alfresco/aca-shared"],
"@alfresco/aca-shared/*": ["dist/@alfresco/aca-shared/*"]
},
"resolveJsonModule": true
},
"exclude": ["node_modules"],
"angularCompilerOptions": {
"preserveWhitespaces": false
}
}