From 8a62486cdf496731c4599d12b2148b5e8b023f77 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 65d57f2..7372fbe 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"] }