From 989ffb9f62c9076e34bc4a1557ad16b4c3c5ba65 Mon Sep 17 00:00:00 2001 From: Ethan Hampton Date: Sun, 28 Jan 2024 13:55:08 -0600 Subject: [PATCH] Fix new lints --- example-ts/tsconfig.json | 6 +++--- tsconfig.json | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/example-ts/tsconfig.json b/example-ts/tsconfig.json index e62a07b..390ecdb 100644 --- a/example-ts/tsconfig.json +++ b/example-ts/tsconfig.json @@ -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 */ @@ -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/**"], } diff --git a/tsconfig.json b/tsconfig.json index c0fbd27..114bf13 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,7 +6,7 @@ "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "declaration": true, - "skipLibCheck": true + "skipLibCheck": true, }, - "files": ["index.ts"] + "files": ["index.ts"], }