mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
feat(typescript): Setup Typescript incremental builds (#3876)
This commit is contained in:
parent
f5c6c21bf4
commit
799676b24d
|
@ -11,6 +11,7 @@
|
|||
"module": "commonjs",
|
||||
"noImplicitAny": true,
|
||||
"removeComments": true,
|
||||
"incremental": true,
|
||||
"strictNullChecks": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"noImplicitReturns": true,
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
"jest"
|
||||
],
|
||||
"module": "commonjs",
|
||||
"incremental": true,
|
||||
"removeComments": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"noImplicitReturns": true,
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
"declaration": true,
|
||||
"experimentalDecorators": true,
|
||||
"skipLibCheck": true,
|
||||
"incremental": true,
|
||||
"esModuleInterop": true,
|
||||
"allowJs": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
"strict": true,
|
||||
"jsx": "preserve",
|
||||
"skipLibCheck": true,
|
||||
"incremental": true,
|
||||
"importHelpers": true,
|
||||
"moduleResolution": "node",
|
||||
"esModuleInterop": true,
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
],
|
||||
"types": [],
|
||||
"module": "commonjs",
|
||||
"incremental": true,
|
||||
"importHelpers": true,
|
||||
"preserveConstEnums": true,
|
||||
"declaration": true,
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
"node"
|
||||
],
|
||||
"module": "commonjs",
|
||||
"incremental": true,
|
||||
"esModuleInterop": true,
|
||||
"removeComments": true,
|
||||
"strict": true,
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
"jest"
|
||||
],
|
||||
"module": "commonjs",
|
||||
"incremental": true,
|
||||
"removeComments": true,
|
||||
"strict": true,
|
||||
"preserveConstEnums": true,
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
"jest"
|
||||
],
|
||||
"module": "commonjs",
|
||||
"incremental": true,
|
||||
"removeComments": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"esModuleInterop": true,
|
||||
|
|
Loading…
Reference in a new issue