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"], }