mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-06-16 17:54:59 +00:00
* package fixes * upgrade stylelint config * upgrade configuration and stats * code fixes based on Angular upgrade * rework scss-bundle usage * use node 14 with travis (lts) * fix production builds * fix node sass version
38 lines
710 B
JSON
38 lines
710 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"module": "commonjs",
|
|
"declarationMap": true,
|
|
"moduleResolution": "node",
|
|
"noEmitOnError": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": false,
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true,
|
|
"outDir": "./dist",
|
|
"rootDir": ".",
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": false,
|
|
"target": "es2018",
|
|
"lib": [
|
|
"es2018",
|
|
"dom"
|
|
],
|
|
"baseUrl": ".",
|
|
"typeRoots": [
|
|
"./node_modules/@types"
|
|
],
|
|
"types": [
|
|
"node"
|
|
],
|
|
"paths": {
|
|
}
|
|
},
|
|
"exclude": [
|
|
"dist/**/*",
|
|
"./build.ts",
|
|
"node_modules/**/*"
|
|
]
|
|
}
|