diff --git a/packages/interactivity/tsconfig.json b/packages/interactivity/tsconfig.json index bcb26904e1d09..6c8b2c750c366 100644 --- a/packages/interactivity/tsconfig.json +++ b/packages/interactivity/tsconfig.json @@ -3,8 +3,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/**/*" ] } diff --git a/tsconfig.base.json b/tsconfig.base.json index 495796402bdf8..400f84a5d81f3 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -6,7 +6,7 @@ "jsx": "preserve", "target": "esnext", "module": "esnext", - "lib": [ "dom", "esnext" ], + "lib": [ "DOM", "DOM.Iterable", "ESNext" ], "declaration": true, "declarationMap": true, "composite": true,