diff options
-rw-r--r-- | tsconfig.json | 29 |
1 files changed, 6 insertions, 23 deletions
diff --git a/tsconfig.json b/tsconfig.json index 4495f03..0c7b4a5 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,21 +19,11 @@ "baseUrl": "./", "useUnknownInCatchVariables": false, "paths": { - "src/*": [ - "./src/*" - ], - "@lib": [ - "./src/lib" - ], - "@root": [ - "." - ] + "src/*": ["./src/*"], + "@lib": ["./src/lib"], + "@root": ["."] } }, - "include": [ - "src/**/*.ts", - "lib/**/*.ts", - "ecosystem.config.js" - ], + "include": ["src/**/*.ts", "lib/**/*.ts", "ecosystem.config.js"], "exclude": [] -}
\ No newline at end of file +} |