mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
* table cell component - table cell component with performance improvements * permissions and sorting fixes - fixed ability to set default sorting - fixed permission evaluation - new: context menu now also works with permissions - disabled tags column in demo shell due to performance implications * fix unit tests * fix tsconfig for unit testing
36 lines
906 B
JSON
36 lines
906 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"skipLibCheck": true,
|
|
"noLib": false,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"noImplicitAny": false,
|
|
"noImplicitReturns": false,
|
|
"noImplicitUseStrict": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"removeComments": true,
|
|
"declaration": true,
|
|
"outDir": "./dist",
|
|
"lib": [
|
|
"es2015",
|
|
"dom"
|
|
],
|
|
"suppressImplicitAnyIndexErrors": true
|
|
},
|
|
"exclude": [
|
|
"demo",
|
|
"node_modules",
|
|
"dist"
|
|
],
|
|
"angularCompilerOptions": {
|
|
"strictMetadataEmit": false,
|
|
"skipTemplateCodegen": true
|
|
}
|
|
}
|