aboutsummaryrefslogtreecommitdiff
path: root/web/tsconfig.base.json
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--web/tsconfig.base.json27
1 files changed, 27 insertions, 0 deletions
diff --git a/web/tsconfig.base.json b/web/tsconfig.base.json
new file mode 100644
index 0000000..69c73ed
--- /dev/null
+++ b/web/tsconfig.base.json
@@ -0,0 +1,27 @@
+{
+ "compilerOptions": {
+ "target": "ES2022",
+ "module": "ESNext",
+ "moduleResolution": "Bundler",
+ "lib": ["ES2022"],
+ "types": [],
+
+ "strict": true,
+ "noImplicitAny": true,
+ "noImplicitReturns": true,
+ "noFallthroughCasesInSwitch": true,
+ "noUncheckedIndexedAccess": true,
+ "exactOptionalPropertyTypes": true,
+ "useUnknownInCatchVariables": true,
+
+ "esModuleInterop": true,
+ "forceConsistentCasingInFileNames": true,
+ "isolatedModules": true,
+ "resolveJsonModule": true,
+ "skipLibCheck": true,
+ "verbatimModuleSyntax": true,
+
+ "declaration": true,
+ "sourceMap": true
+ }
+}