diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-09-04 12:39:08 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-09-04 12:39:08 -0400 |
commit | bb774bbe0cfedd77be852f73448df061252b7c0a (patch) | |
tree | 579c2f11717dd5aa3a0d6ea990479368b338cd66 /tsconfig.json | |
parent | 939f19c1a8a7efea00fc3df3504a41fc58a3b286 (diff) | |
download | tanzanite-bb774bbe0cfedd77be852f73448df061252b7c0a.tar.gz tanzanite-bb774bbe0cfedd77be852f73448df061252b7c0a.tar.bz2 tanzanite-bb774bbe0cfedd77be852f73448df061252b7c0a.zip |
I sure do love when one line causes 400 errors
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 27 |
1 files changed, 21 insertions, 6 deletions
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 |