Skip to content

Commit

Permalink
chore: globally toggle strict mode
Browse files Browse the repository at this point in the history
  • Loading branch information
crutchcorn committed Dec 17, 2024
1 parent 4a241c1 commit a4012bb
Show file tree
Hide file tree
Showing 12 changed files with 1 addition and 34 deletions.
3 changes: 0 additions & 3 deletions packages/vibrant-color/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"strict": true
},
"include": ["src", "vite.config.ts"]
}
3 changes: 0 additions & 3 deletions packages/vibrant-core/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"strict": true
},
"include": ["src", "vite.config.ts"]
}
3 changes: 0 additions & 3 deletions packages/vibrant-generator-default/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"strict": true
},
"include": ["src", "vite.config.ts"]
}
3 changes: 0 additions & 3 deletions packages/vibrant-generator/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"strict": true
},
"include": ["src", "vite.config.ts"]
}
3 changes: 0 additions & 3 deletions packages/vibrant-image-browser/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"strict": true
},
"include": ["src", "__tests__", "vite.config.ts", "vitest.config.ts"]
}
3 changes: 0 additions & 3 deletions packages/vibrant-image-node/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"strict": true
},
"include": ["src", "vite.config.ts"]
}
3 changes: 0 additions & 3 deletions packages/vibrant-image/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"strict": true
},
"include": ["src", "vite.config.ts"]
}
3 changes: 0 additions & 3 deletions packages/vibrant-quantizer-mmcq/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"strict": true
},
"include": ["src", "vite.config.ts"]
}
3 changes: 0 additions & 3 deletions packages/vibrant-quantizer/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"strict": true
},
"include": ["src", "vite.config.ts"]
}
3 changes: 0 additions & 3 deletions packages/vibrant-types/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"strict": true
},
"include": ["src", "vite.config.ts"]
}
3 changes: 0 additions & 3 deletions packages/vibrant-worker/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"strict": true
},
"include": ["src", "vite.config.ts"]
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": false, // TODO: Enable
"strict": true,
"target": "ES2020"
},
"include": []
Expand Down

0 comments on commit a4012bb

Please sign in to comment.