aboutsummaryrefslogtreecommitdiffstats
path: root/webui/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'webui/tsconfig.json')
-rw-r--r--webui/tsconfig.json16
1 files changed, 13 insertions, 3 deletions
diff --git a/webui/tsconfig.json b/webui/tsconfig.json
index 30ba544b..4e83eef3 100644
--- a/webui/tsconfig.json
+++ b/webui/tsconfig.json
@@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "es5",
- "lib": ["dom", "dom.iterable", "esnext"],
+ "lib": [
+ "dom",
+ "dom.iterable",
+ "esnext"
+ ],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
@@ -14,7 +18,13 @@
"isolatedModules": true,
"noEmit": true,
"jsx": "react",
- "typeRoots": ["node_modules/@types/", "types/"]
+ "typeRoots": [
+ "node_modules/@types/",
+ "types/"
+ ],
+ "baseUrl": "."
},
- "include": ["src"]
+ "include": [
+ "src"
+ ]
}