mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-26 17:24:45 +00:00
* integrate prettier with tslint * remove obsolte scripts * update tsconfig * fix lint issues * fix lint errors * more rules and fixes * kebab case and lint fixes * update helpers * update util
38 lines
1.0 KiB
JSON
38 lines
1.0 KiB
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"importHelpers": true,
|
|
"outDir": "./dist/out-tsc",
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"module": "es2015",
|
|
"moduleResolution": "node",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"target": "es5",
|
|
"resolveJsonModule": true,
|
|
"typeRoots": ["node_modules/@types"],
|
|
"lib": ["es2018", "dom"],
|
|
"paths": {
|
|
"@alfresco/aca-shared": ["projects/aca-shared/src/public-api.ts"],
|
|
"@alfresco/aca-shared/store": [
|
|
"projects/aca-shared/store/src/public-api.ts"
|
|
],
|
|
"@alfresco/aca-shared/rules": [
|
|
"projects/aca-shared/rules/src/public-api.ts"
|
|
],
|
|
"@alfresco/adf-office-services-ext": [
|
|
"projects/adf-office-services-ext/src/public-api.ts"
|
|
]
|
|
}
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"angularCompilerOptions": {
|
|
"preserveWhitespaces": false
|
|
}
|
|
}
|