51d75a0a50
**What kind of change does this PR introduce?**
It moves all the `ng-schematics` commands to WireIt
**Did you add tests for your changes?**
N/A
**Summary**
We want all our packages to use the same processes to build and test.
This also allows us to have better build times and also watch mode 👀.
**Does this PR introduce a breaking change?**
No
**Other information**
20 lines
460 B
JSON
20 lines
460 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"baseUrl": "tsconfig",
|
|
"lib": ["ES2018"],
|
|
"module": "CommonJS",
|
|
"noEmitOnError": true,
|
|
"rootDir": "src/",
|
|
"outDir": "lib/",
|
|
"skipDefaultLibCheck": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"types": ["node"],
|
|
"target": "ES6"
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["src/**/files/**/*"],
|
|
"references": [{"path": "./tsconfig.spec.json"}]
|
|
}
|