Skip to content

Commit

Permalink
test: run tsc on SDK fixtures (#819)
Browse files Browse the repository at this point in the history
* test: run `tsc` on SDK fixtures

* chore: remove unnecessary `strict` flag

this is already present in `@tsconfig/node18/tsconfig.json`
  • Loading branch information
kanadgupta authored Nov 8, 2023
1 parent 3339332 commit ef49821
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/test-utils/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"lib": ["DOM", "ES2023"],
"noEmit": true
"noEmit": true,
"resolveJsonModule": true
},
"include": ["./**/*"],
"exclude": ["./sdks/**/*"]
"include": ["./**/*"]
}
1 change: 0 additions & 1 deletion tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": true,
"useUnknownInCatchVariables": false
}
}

0 comments on commit ef49821

Please sign in to comment.