We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5f3a5d commit 757331bCopy full SHA for 757331b
src/loadTsConfig.ts
@@ -16,5 +16,6 @@ export default function loadTsConfig(cwd: string): any {
16
// the composite setting adds a few constraints that cause us all manner of problems
17
compilerOptions.composite = false;
18
}
19
+ compilerOptions.incremental = false;
20
return compilerOptions;
21
tsconfig.json
@@ -20,7 +20,8 @@
"noUnusedLocals": true,
"noUnusedParameters": true,
22
"declaration": true,
23
- "lib": ["es2018"]
+ "lib": ["es2018"],
24
+ "incremental": true
25
},
26
"include": ["src"]
27
0 commit comments