From bb774bbe0cfedd77be852f73448df061252b7c0a Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Sat, 4 Sep 2021 12:39:08 -0400 Subject: I sure do love when one line causes 400 errors --- tsconfig.json | 27 +++++++++++++++++++++------ 1 file changed, 21 insertions(+), 6 deletions(-) (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json index 34ef008..c3316fc 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,14 @@ "module": "commonjs", "target": "esnext", "outDir": "dist", - "lib": ["esnext", "esnext.array", "esnext.asyncIterable", "esnext.intl", "esnext.symbol", "DOM"], + "lib": [ + "esnext", + "esnext.array", + "esnext.asyncIterable", + "esnext.intl", + "esnext.symbol", + "DOM" + ], "sourceMap": false, "inlineSourceMap": true, "inlineSources": true, @@ -19,11 +26,19 @@ "baseUrl": "./", "useUnknownInCatchVariables": false, "paths": { - "src/*": ["./src/*"], - "@lib": ["./src/lib"], - "@root": ["."] + "src/*": [ + "./src/*" + ], + "@lib": [ + "./src/lib" + ], + "@root": [ + "." + ] } }, - "include": ["src/**/*.ts"], + "include": [ + "src/**/*.ts" + ], "exclude": [] -} +} \ No newline at end of file -- cgit