diff options
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 |