Skip to content

Commit

Permalink
feat(tsconfig)!: remove depricated importsNotUsedAsValues config
Browse files Browse the repository at this point in the history
  • Loading branch information
mheob committed Mar 21, 2023
1 parent db71d90 commit e088807
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .changeset/yellow-rings-refuse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@mheob/tsconfig': major
---

remove depricated `importsNotUsedAsValues` config
2 changes: 1 addition & 1 deletion packages/commitlint-config/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@mheob/tsconfig/commonjs.json",
"extends": "../tsconfig/commonjs.json",
"compilerOptions": {
"declaration": true,
"outDir": "dist",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@mheob/tsconfig/commonjs.json",
"extends": "../tsconfig/commonjs.json",
"compilerOptions": {
"declaration": true,
"outDir": "dist",
Expand Down
2 changes: 1 addition & 1 deletion packages/prettier-config/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@mheob/tsconfig/commonjs.json",
"extends": "../tsconfig/commonjs.json",
"compilerOptions": {
"declaration": true,
"outDir": "dist",
Expand Down
1 change: 0 additions & 1 deletion packages/tsconfig/astro.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"importsNotUsedAsValues": "error",
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
Expand Down
1 change: 0 additions & 1 deletion packages/tsconfig/commonjs.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"importsNotUsedAsValues": "error",
"checkJs": true
},
"exclude": ["node_modules"]
Expand Down
1 change: 0 additions & 1 deletion packages/tsconfig/esm.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"importsNotUsedAsValues": "error",
"checkJs": true
},
"exclude": ["node_modules"]
Expand Down

0 comments on commit e088807

Please sign in to comment.