From c7c69a54aa2b9aa4658bba27c1934f7df42afa7f Mon Sep 17 00:00:00 2001 From: Kelly Mears Date: Fri, 23 Dec 2022 10:49:26 -0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20improve:=20jsconfig.json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jsconfig.json | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/jsconfig.json b/jsconfig.json index 65d57f29..7372fbed 100644 --- a/jsconfig.json +++ b/jsconfig.json @@ -1,19 +1,15 @@ { + "extends": "@roots/sage/config/jsconfig.json", "compilerOptions": { - "allowSyntheticDefaultImports": true, "baseUrl": "resources", - "lib": ["DOM", "DOM.Iterable", "ESNext"], - "module": "esnext", - "moduleResolution": "node", - "jsx": "preserve", "paths": { "@fonts/*": ["fonts/*"], "@images/*": ["images/*"], "@scripts/*": ["scripts/*"], "@styles/*": ["styles/*"] }, - "target": "es5" + "types": ["@roots/bud-tailwindcss"] }, - "include": ["bud.config.mjs", "resources"], - "exclude": ["public"] + "include": ["bud.config.js", "resources"], + "exclude": ["node_modules", "public"] }