Skip to content

Commit

Permalink
[Restore] noImplicitAny to false
Browse files Browse the repository at this point in the history
  • Loading branch information
ptkdev committed Apr 30, 2021
1 parent 1706d5f commit bdc7676
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions app/html/webcomponent.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,8 @@
export let flip: string;
export let footer: string;
let text: "hello-world";
async function getHelloWorld() {
const { app } = await webcomponent({ text });
const { app } = await webcomponent({ text: "hello-world" });
return app();
}
Expand Down
2 changes: 1 addition & 1 deletion app/types/webcomponent.type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export interface ModuleInterface {
*
* @interface [ModuleInterface](https://github.com/ptkdev-boilerplate/svelte-webcomponent-boilerplate/blob/main/app/webcomponent/types/module.type.ts)
*
* @param { String } text - input text
* @param {string} text - input text
*
*/
text: string
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"resolveJsonModule": true,
"moduleResolution": "node",
"esModuleInterop": true,
"noImplicitAny": true,
"noImplicitAny": false,
"noImplicitThis": true,
"declaration": false,
"strict": false,
Expand Down

0 comments on commit bdc7676

Please sign in to comment.