Skip to content

Commit

Permalink
Strict type checking
Browse files Browse the repository at this point in the history
  • Loading branch information
sirreal committed Apr 10, 2024
1 parent 3b285be commit 393c6ba
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
11 changes: 9 additions & 2 deletions packages/interactivity/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,15 @@
"compilerOptions": {
"rootDir": "src",
"declarationDir": "build-types",
"checkJs": false,
"strict": false

"alwaysStrict": false,
"strictNullChecks": false,
"strictBindCallApply": false,
"strictFunctionTypes": false,
"strictPropertyInitialization": false,
"noImplicitAny": false,
"noImplicitThis": false,
"useUnknownInCatchVariables": false
},
"include": [ "src/**/*" ]
}
2 changes: 1 addition & 1 deletion tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"jsx": "preserve",
"target": "esnext",
"module": "esnext",
"lib": [ "dom", "esnext" ],
"lib": [ "DOM", "DOM.Iterable", "ESNext" ],
"declaration": true,
"declarationMap": true,
"composite": true,
Expand Down

0 comments on commit 393c6ba

Please sign in to comment.