Skip to content

Commit e969230

Browse files
committed
🌈 Scope tsconfig with "base" to show intent
1 parent 7bb2e54 commit e969230

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
# Dont lint the lint config
12
packages/eslint-config-caboodle/index.js

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
},
2626
"scripts": {
2727
"lerna": "lerna",
28-
"lint": "eslint \"packages/**/*.{js,ts}\""
28+
"lint": "eslint \"packages/**/*.{js,ts}\"",
29+
"typecheck": "tsc --noEmit"
2930
}
3031
}

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"extends": "./packages/caboodle-tsconfig/tsconfig",
2+
"extends": "./packages/caboodle-tsconfig/tsconfig.base.json",
33
"exclude": ["node_modules"]
44
}

0 commit comments

Comments
 (0)