aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'FrontEnd/src/tsconfig.json')
-rw-r--r--FrontEnd/src/tsconfig.json23
1 files changed, 23 insertions, 0 deletions
diff --git a/FrontEnd/src/tsconfig.json b/FrontEnd/src/tsconfig.json
new file mode 100644
index 00000000..1855f5cd
--- /dev/null
+++ b/FrontEnd/src/tsconfig.json
@@ -0,0 +1,23 @@
+{
+ "compilerOptions": {
+ "target": "esnext",
+ "allowJs": true,
+ "skipLibCheck": true,
+ "esModuleInterop": true,
+ "allowSyntheticDefaultImports": true,
+ "strict": true,
+ "forceConsistentCasingInFileNames": true,
+ "module": "esnext",
+ "moduleResolution": "node",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "jsx": "preserve",
+ "sourceMap": true,
+ "baseUrl": "./",
+ "paths": {
+ "@/*": [
+ "app/*"
+ ]
+ }
+ }
+}