35 lines
714 B
JSON
35 lines
714 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"baseUrl": ".",
|
||
|
"lib": [
|
||
|
"es2018",
|
||
|
"dom"
|
||
|
],
|
||
|
"declaration": true,
|
||
|
"module": "commonjs",
|
||
|
"moduleResolution": "node",
|
||
|
"noEmitOnError": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"noImplicitAny": true,
|
||
|
"noImplicitThis": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"rootDir": "schematics",
|
||
|
"outDir": "../../dist/my-lib/schematics",
|
||
|
"skipDefaultLibCheck": true,
|
||
|
"skipLibCheck": true,
|
||
|
"sourceMap": true,
|
||
|
"strictNullChecks": true,
|
||
|
"target": "es6",
|
||
|
"types": [
|
||
|
"jasmine",
|
||
|
"node"
|
||
|
]
|
||
|
},
|
||
|
"include": [
|
||
|
"schematics/**/*"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"schematics/*/files/**/*"
|
||
|
]
|
||
|
}
|