aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/frontend/tsconfig.json')
-rw-r--r--subprojects/frontend/tsconfig.json18
1 files changed, 18 insertions, 0 deletions
diff --git a/subprojects/frontend/tsconfig.json b/subprojects/frontend/tsconfig.json
new file mode 100644
index 00000000..94c357c5
--- /dev/null
+++ b/subprojects/frontend/tsconfig.json
@@ -0,0 +1,18 @@
1{
2 "compilerOptions": {
3 "target": "es2020",
4 "module": "esnext",
5 "moduleResolution": "node",
6 "esModuleInterop": true,
7 "allowSyntheticDefaultImports": true,
8 "jsx": "react",
9 "strict": true,
10 "noImplicitOverride": true,
11 "noImplicitReturns": true,
12 "exactOptionalPropertyTypes": false,
13 "noEmit": true,
14 "skipLibCheck": true
15 },
16 "include": ["./src/**/*"],
17 "exclude": ["./build/generated/sources/lezer/*"]
18}