From 265c6255a8807b280db3d52ebcd51ad23831d07c Mon Sep 17 00:00:00 2001 From: Steve Kinney Date: Wed, 2 Oct 2024 03:19:47 -0500 Subject: [PATCH] Adjust configuration --- jsconfig.json | 2 +- tsconfig.json | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/jsconfig.json b/jsconfig.json index e837348..d84dbc7 100644 --- a/jsconfig.json +++ b/jsconfig.json @@ -11,6 +11,6 @@ "./*.html?raw": ["./*"] } }, - "include": ["examples/**/*.js"], + "include": ["examples/**/*.js", "examples/**/*.svelte"], "exclude": ["node_modules", "dist"] } diff --git a/tsconfig.json b/tsconfig.json index 6f02403..3f861db 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,5 +10,7 @@ }, "jsx": "react-jsx", "forceConsistentCasingInFileNames": true - } + }, + "include": ["examples/**/*.js", "examples/**/*.svelte", "examples/**/*.ts"], + "exclude": ["node_modules", "dist"] }