aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/tsconfig.base.json
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/frontend/tsconfig.base.json')
-rw-r--r--subprojects/frontend/tsconfig.base.json15
1 files changed, 15 insertions, 0 deletions
diff --git a/subprojects/frontend/tsconfig.base.json b/subprojects/frontend/tsconfig.base.json
new file mode 100644
index 00000000..e33e330e
--- /dev/null
+++ b/subprojects/frontend/tsconfig.base.json
@@ -0,0 +1,15 @@
1{
2 "compilerOptions": {
3 "target": "ESNext",
4 "module": "ESNext",
5 "moduleResolution": "Node",
6 "esModuleInterop": true,
7 "allowSyntheticDefaultImports": true,
8 "strict": true,
9 "noImplicitOverride": true,
10 "noImplicitReturns": true,
11 "exactOptionalPropertyTypes": true,
12 "isolatedModules": true,
13 "skipLibCheck": true
14 }
15}