Skip to content

Commit

Permalink
Fix new lints
Browse files Browse the repository at this point in the history
  • Loading branch information
EMH333 committed Jan 28, 2024
1 parent 79a9371 commit 989ffb9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions example-ts/tsconfig.json
Expand Up @@ -24,7 +24,7 @@
// "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */
"types": [
// "node",
"svelte"
"svelte",
] /* Specify type package names to be included without being referenced in a source file. */,

/* Interop Constraints */
Expand All @@ -39,8 +39,8 @@

/* Completeness */
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
"skipLibCheck": true /* Skip type checking all .d.ts files. */
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
},
"include": ["entry.ts"],
"exclude": ["node_modules/**", "dist/**"]
"exclude": ["node_modules/**", "dist/**"],
}
4 changes: 2 additions & 2 deletions tsconfig.json
Expand Up @@ -6,7 +6,7 @@
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"skipLibCheck": true
"skipLibCheck": true,
},
"files": ["index.ts"]
"files": ["index.ts"],
}

0 comments on commit 989ffb9

Please sign in to comment.