diff options
-rw-r--r-- | tsconfig.json | 27 |
1 files changed, 6 insertions, 21 deletions
diff --git a/tsconfig.json b/tsconfig.json index c3316fc..34ef008 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,14 +3,7 @@ "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, @@ -26,19 +19,11 @@ "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 +} |