Skip to content

Commit

Permalink
Centralise excludes
Browse files Browse the repository at this point in the history
  • Loading branch information
rcantin-w committed Jul 1, 2024
1 parent 6df9766 commit 0ee7793
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 6 deletions.
1 change: 0 additions & 1 deletion cardigan/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
{
"extends": "../config/tsconfig-base",
"exclude": ["node_modules", ".dist", ".cache"]
}
1 change: 0 additions & 1 deletion common/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@
"compilerOptions": {
"module": "commonjs"
},
"exclude": ["node_modules"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
}
5 changes: 3 additions & 2 deletions config/tsconfig-base.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@
"isolatedModules": true,
"jsx": "preserve",
"lib": ["esnext"],
"moduleResolution": "node",
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": false,
"strictNullChecks": true,
"target": "es6",
}
},
"exclude": ["**/node_modules"]
}
1 change: 0 additions & 1 deletion content/webapp/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"extends": "../../config/tsconfig-base",
"exclude": ["node_modules"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"ts-node": {
"preferTsExts": true
Expand Down
1 change: 0 additions & 1 deletion identity/webapp/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"compilerOptions": {
"module": "commonjs"
},
"exclude": ["node_modules"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"ts-node": {
"preferTsExts": true
Expand Down

0 comments on commit 0ee7793

Please sign in to comment.