Skip to content

Commit

Permalink
⚡ Make tsconfig.json files "fully" valid JSON files
Browse files Browse the repository at this point in the history
  • Loading branch information
janober committed Aug 13, 2019
1 parent 2591e98 commit 86e1c4a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
4 changes: 1 addition & 3 deletions packages/cli/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
// Have to deactivate for TypeORM
// "strict": true,
"preserveConstEnums": true,
"resolveJsonModule": true,
"declaration": true,
Expand All @@ -30,7 +28,7 @@
"index.ts",
"config/**/*",
"src/**/*",
"test/**/*",
"test/**/*"
],
"exclude": [
"dist/**/*",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"include": [
"**/*.d.ts",
"src/**/*",
"test/**/*",
"test/**/*"
],
"exclude": [
"dist/**/*",
Expand Down
4 changes: 2 additions & 2 deletions packages/node-dev/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"es2017"
],
"types": [
"node",
"node"
],
"module": "commonjs",
"esModuleInterop": true,
Expand All @@ -22,7 +22,7 @@
"**/*.d.ts",
"commands/**/*",
"index.ts",
"src/**/*",
"src/**/*"
],
"exclude": [
"dist",
Expand Down
2 changes: 1 addition & 1 deletion packages/nodes-base/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"credentials/**/*",
"src/**/*",
"nodes/**/*",
"test/**/*",
"test/**/*"
],
"exclude": [
"**/*.spec.ts"
Expand Down
2 changes: 1 addition & 1 deletion packages/workflow/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"include": [
"**/*.d.ts",
"src/**/*",
"test/**/*",
"test/**/*"
],
"exclude": [
"dist/**/*",
Expand Down

0 comments on commit 86e1c4a

Please sign in to comment.