aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-09-04 12:39:08 -0400
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-09-04 12:39:08 -0400
commitbb774bbe0cfedd77be852f73448df061252b7c0a (patch)
tree579c2f11717dd5aa3a0d6ea990479368b338cd66 /tsconfig.json
parent939f19c1a8a7efea00fc3df3504a41fc58a3b286 (diff)
downloadtanzanite-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.json27
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