mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
* Add lite-serve with VSCode launcher * Make lite-serve smarter to work with Basic authtype as well * Change and unify app-config-replace script
33 lines
930 B
JSON
33 lines
930 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/scripts",
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"baseUrl": ".",
|
|
"sourceMap": false,
|
|
"declaration": false,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"skipLibCheck": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"typeRoots": [
|
|
"node_modules/@types",
|
|
"node_modules/commander/typings/index.d.ts"
|
|
],
|
|
"lib": ["es2018", "dom"],
|
|
"types": ["node", "jasmine", "jest"],
|
|
"paths": {
|
|
"angular.json": ["../angular.json"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"angularCompilerOptions": {
|
|
"preserveWhitespaces": false
|
|
}
|
|
}
|