diff options
Diffstat (limited to 'webui/tsconfig.json')
-rw-r--r-- | webui/tsconfig.json | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/webui/tsconfig.json b/webui/tsconfig.json index 705bae44..30ba544b 100644 --- a/webui/tsconfig.json +++ b/webui/tsconfig.json @@ -1,11 +1,7 @@ { "compilerOptions": { "target": "es5", - "lib": [ - "dom", - "dom.iterable", - "esnext" - ], + "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": true, "esModuleInterop": true, @@ -18,12 +14,7 @@ "isolatedModules": true, "noEmit": true, "jsx": "react", - "typeRoots": [ - "node_modules/@types/", - "types/" - ] + "typeRoots": ["node_modules/@types/", "types/"] }, - "include": [ - "src" - ] + "include": ["src"] } |