aboutsummaryrefslogtreecommitdiff
path: root/frontend/tsconfig.json
diff options
context:
space:
mode:
authoromagdy7 <omar.professional8777@gmail.com>2024-04-28 18:45:30 +0300
committeromagdy7 <omar.professional8777@gmail.com>2024-04-28 18:45:30 +0300
commite1e42fc6c17ba99b7cad940b3c3e1c97df959140 (patch)
treed9cb78b61514eef078d8284321dad326ad52b949 /frontend/tsconfig.json
downloadcloudrender-e1e42fc6c17ba99b7cad940b3c3e1c97df959140.tar.xz
cloudrender-e1e42fc6c17ba99b7cad940b3c3e1c97df959140.zip
Added a simple UI for our application
Diffstat (limited to 'frontend/tsconfig.json')
-rw-r--r--frontend/tsconfig.json25
1 files changed, 25 insertions, 0 deletions
diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json
new file mode 100644
index 0000000..a7fc6fb
--- /dev/null
+++ b/frontend/tsconfig.json
@@ -0,0 +1,25 @@
+{
+ "compilerOptions": {
+ "target": "ES2020",
+ "useDefineForClassFields": true,
+ "lib": ["ES2020", "DOM", "DOM.Iterable"],
+ "module": "ESNext",
+ "skipLibCheck": true,
+
+ /* Bundler mode */
+ "moduleResolution": "bundler",
+ "allowImportingTsExtensions": true,
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "noEmit": true,
+ "jsx": "react-jsx",
+
+ /* Linting */
+ "strict": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "noFallthroughCasesInSwitch": true
+ },
+ "include": ["src"],
+ "references": [{ "path": "./tsconfig.node.json" }]
+}