Skip to content

Commit

Permalink
feat(typescript): Setup Typescript incremental builds (#3876)
Browse files Browse the repository at this point in the history
  • Loading branch information
netroy committed Sep 9, 2022
1 parent f5c6c21 commit 799676b
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/cli/tsconfig.json
Expand Up @@ -11,6 +11,7 @@
"module": "commonjs",
"noImplicitAny": true,
"removeComments": true,
"incremental": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
Expand Down
1 change: 1 addition & 0 deletions packages/core/tsconfig.json
Expand Up @@ -8,6 +8,7 @@
"jest"
],
"module": "commonjs",
"incremental": true,
"removeComments": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
Expand Down
1 change: 1 addition & 0 deletions packages/design-system/tsconfig.json
Expand Up @@ -8,6 +8,7 @@
"declaration": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"incremental": true,
"esModuleInterop": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
Expand Down
1 change: 1 addition & 0 deletions packages/editor-ui/tsconfig.json
Expand Up @@ -8,6 +8,7 @@
"strict": true,
"jsx": "preserve",
"skipLibCheck": true,
"incremental": true,
"importHelpers": true,
"moduleResolution": "node",
"esModuleInterop": true,
Expand Down
1 change: 1 addition & 0 deletions packages/node-dev/src/tsconfig-build.json
Expand Up @@ -5,6 +5,7 @@
],
"types": [],
"module": "commonjs",
"incremental": true,
"importHelpers": true,
"preserveConstEnums": true,
"declaration": true,
Expand Down
1 change: 1 addition & 0 deletions packages/node-dev/tsconfig.json
Expand Up @@ -7,6 +7,7 @@
"node"
],
"module": "commonjs",
"incremental": true,
"esModuleInterop": true,
"removeComments": true,
"strict": true,
Expand Down
1 change: 1 addition & 0 deletions packages/nodes-base/tsconfig.json
Expand Up @@ -9,6 +9,7 @@
"jest"
],
"module": "commonjs",
"incremental": true,
"removeComments": true,
"strict": true,
"preserveConstEnums": true,
Expand Down
1 change: 1 addition & 0 deletions packages/workflow/tsconfig.json
Expand Up @@ -9,6 +9,7 @@
"jest"
],
"module": "commonjs",
"incremental": true,
"removeComments": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
Expand Down

0 comments on commit 799676b

Please sign in to comment.