mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 12:57:29 -08:00
⚡ Make tsconfig.json files "fully" valid JSON files
This commit is contained in:
parent
2591e98333
commit
86e1c4a04f
|
@ -13,8 +13,6 @@
|
||||||
"strictNullChecks": true,
|
"strictNullChecks": true,
|
||||||
"forceConsistentCasingInFileNames": true,
|
"forceConsistentCasingInFileNames": true,
|
||||||
"noImplicitReturns": true,
|
"noImplicitReturns": true,
|
||||||
// Have to deactivate for TypeORM
|
|
||||||
// "strict": true,
|
|
||||||
"preserveConstEnums": true,
|
"preserveConstEnums": true,
|
||||||
"resolveJsonModule": true,
|
"resolveJsonModule": true,
|
||||||
"declaration": true,
|
"declaration": true,
|
||||||
|
@ -30,7 +28,7 @@
|
||||||
"index.ts",
|
"index.ts",
|
||||||
"config/**/*",
|
"config/**/*",
|
||||||
"src/**/*",
|
"src/**/*",
|
||||||
"test/**/*",
|
"test/**/*"
|
||||||
],
|
],
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"dist/**/*",
|
"dist/**/*",
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
"include": [
|
"include": [
|
||||||
"**/*.d.ts",
|
"**/*.d.ts",
|
||||||
"src/**/*",
|
"src/**/*",
|
||||||
"test/**/*",
|
"test/**/*"
|
||||||
],
|
],
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"dist/**/*",
|
"dist/**/*",
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"es2017"
|
"es2017"
|
||||||
],
|
],
|
||||||
"types": [
|
"types": [
|
||||||
"node",
|
"node"
|
||||||
],
|
],
|
||||||
"module": "commonjs",
|
"module": "commonjs",
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
|
@ -22,7 +22,7 @@
|
||||||
"**/*.d.ts",
|
"**/*.d.ts",
|
||||||
"commands/**/*",
|
"commands/**/*",
|
||||||
"index.ts",
|
"index.ts",
|
||||||
"src/**/*",
|
"src/**/*"
|
||||||
],
|
],
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"dist",
|
"dist",
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
"credentials/**/*",
|
"credentials/**/*",
|
||||||
"src/**/*",
|
"src/**/*",
|
||||||
"nodes/**/*",
|
"nodes/**/*",
|
||||||
"test/**/*",
|
"test/**/*"
|
||||||
],
|
],
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"**/*.spec.ts"
|
"**/*.spec.ts"
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
"include": [
|
"include": [
|
||||||
"**/*.d.ts",
|
"**/*.d.ts",
|
||||||
"src/**/*",
|
"src/**/*",
|
||||||
"test/**/*",
|
"test/**/*"
|
||||||
],
|
],
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"dist/**/*",
|
"dist/**/*",
|
||||||
|
|
Loading…
Reference in a new issue