diff options
author | Liang Yi <[email protected]> | 2021-03-25 22:22:43 +0800 |
---|---|---|
committer | GitHub <[email protected]> | 2021-03-25 10:22:43 -0400 |
commit | f64719e4ad27df82d93f4eb2ea67c6fc81cf9d16 (patch) | |
tree | d518edda5b2bed6f8408de8e558b4ffb9a843bcb /frontend/tsconfig.json | |
parent | fc9f7772b3b6364b9f92fc9bada9d7cabb8047e1 (diff) | |
download | bazarr-f64719e4ad27df82d93f4eb2ea67c6fc81cf9d16.tar.gz bazarr-f64719e4ad27df82d93f4eb2ea67c6fc81cf9d16.zip |
Refactored Web UI using React
Diffstat (limited to 'frontend/tsconfig.json')
-rw-r--r-- | frontend/tsconfig.json | 20 |
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"] +} |