aboutsummaryrefslogtreecommitdiffstats
path: root/webui/tsconfig.json
diff options
context:
space:
mode:
authorludovicm67 <ludovicmuller1@gmail.com>2020-01-31 12:18:19 +0100
committerQuentin Gliech <quentingliech@gmail.com>2020-02-11 20:54:36 +0100
commitaea42344ded1708361e7e1d577e9c6aa370ad64e (patch)
treeea9e14c64027155d43b5896b083d7b86bc9ae382 /webui/tsconfig.json
parentf105f3bbdfd7b0fb2aa2ddd54719eba725cd5e07 (diff)
downloadgit-bug-aea42344ded1708361e7e1d577e9c6aa370ad64e.tar.gz
webui: transform index and App to TypeScript
Diffstat (limited to 'webui/tsconfig.json')
-rw-r--r--webui/tsconfig.json25
1 files changed, 25 insertions, 0 deletions
diff --git a/webui/tsconfig.json b/webui/tsconfig.json
new file mode 100644
index 00000000..f2850b71
--- /dev/null
+++ b/webui/tsconfig.json
@@ -0,0 +1,25 @@
+{
+ "compilerOptions": {
+ "target": "es5",
+ "lib": [
+ "dom",
+ "dom.iterable",
+ "esnext"
+ ],
+ "allowJs": true,
+ "skipLibCheck": true,
+ "esModuleInterop": true,
+ "allowSyntheticDefaultImports": true,
+ "strict": true,
+ "forceConsistentCasingInFileNames": true,
+ "module": "esnext",
+ "moduleResolution": "node",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "noEmit": true,
+ "jsx": "react"
+ },
+ "include": [
+ "src"
+ ]
+}