summaryrefslogtreecommitdiffhomepage
path: root/frontend/tsconfig.json
diff options
context:
space:
mode:
authorLiang Yi <[email protected]>2021-03-25 22:22:43 +0800
committerGitHub <[email protected]>2021-03-25 10:22:43 -0400
commitf64719e4ad27df82d93f4eb2ea67c6fc81cf9d16 (patch)
treed518edda5b2bed6f8408de8e558b4ffb9a843bcb /frontend/tsconfig.json
parentfc9f7772b3b6364b9f92fc9bada9d7cabb8047e1 (diff)
downloadbazarr-f64719e4ad27df82d93f4eb2ea67c6fc81cf9d16.tar.gz
bazarr-f64719e4ad27df82d93f4eb2ea67c6fc81cf9d16.zip
Refactored Web UI using React
Diffstat (limited to 'frontend/tsconfig.json')
-rw-r--r--frontend/tsconfig.json20
1 files changed, 20 insertions, 0 deletions
diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json
new file mode 100644
index 000000000..274e1eb7f
--- /dev/null
+++ b/frontend/tsconfig.json
@@ -0,0 +1,20 @@
+{
+ "compilerOptions": {
+ "target": "es6",
+ "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-jsx",
+ "noFallthroughCasesInSwitch": true
+ },
+ "include": ["src"]
+}