From 5399f252a28288aed114aabd009b22f86c427750 Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Sat, 30 Apr 2022 12:46:19 -0500 Subject: [PATCH] Convert to tsconfig for better compatibility --- jsconfig.json => tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) rename jsconfig.json => tsconfig.json (64%) diff --git a/jsconfig.json b/tsconfig.json similarity index 64% rename from jsconfig.json rename to tsconfig.json index 58ea4eb..0b36545 100644 --- a/jsconfig.json +++ b/tsconfig.json @@ -1,9 +1,10 @@ { "compilerOptions": { + "allowJs": true, "baseUrl": ".", "paths": { "~/*": ["./*"], - "~/helpers": ["./helpers/*"] + "~helpers": ["./helpers/*"] } } }