diff options
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 30 |
1 files changed, 24 insertions, 6 deletions
diff --git a/tsconfig.json b/tsconfig.json index 0c7b4a5..93ac2eb 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, @@ -18,12 +25,23 @@ "stripInternal": true, "baseUrl": "./", "useUnknownInCatchVariables": false, + "forceConsistentCasingInFileNames": true, "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 |