We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4de8316 commit 02870a8Copy full SHA for 02870a8
tests/legacy-cli/e2e/tests/build/skip-lib-check.ts
@@ -0,0 +1,11 @@
1
+import { ng } from '../../utils/process';
2
+import { createProject, updateTsConfig } from '../../utils/project';
3
+
4
5
+export default async function() {
6
+ await createProject('strict-workspace-test-project', '--strict');
7
+ await updateTsConfig(json => {
8
+ json['compilerOptions']['skipLibCheck'] = false;
9
+ });
10
+ await ng('build');
11
+}
0 commit comments