From 3a4ad998ada546341e693b26c8b30b49cdf38733 Mon Sep 17 00:00:00 2001 From: Yanick Champoux Date: Wed, 6 Apr 2022 20:08:08 -0400 Subject: [PATCH] heed the warning from sveltekit --- jsconfig.json | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/jsconfig.json b/jsconfig.json index 893781f..345083f 100644 --- a/jsconfig.json +++ b/jsconfig.json @@ -1,9 +1,10 @@ { - "compilerOptions": { - "baseUrl": ".", - "paths": { - "$lib/*": ["src/lib/*"] - } - }, - "include": ["src/**/*.d.ts", "src/**/*.js", "src/**/*.svelte"] + "extends": "./.svelte-kit/tsconfig.json", + "compilerOptions": { + "baseUrl": ".", + "paths": { + "$lib/*": ["src/lib/*"] + } + }, + "include": ["src/**/*.d.ts", "src/**/*.js", "src/**/*.svelte"] }