aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/language-web/tsconfig.sonar.json
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/language-web/tsconfig.sonar.json')
-rw-r--r--subprojects/language-web/tsconfig.sonar.json17
1 files changed, 17 insertions, 0 deletions
diff --git a/subprojects/language-web/tsconfig.sonar.json b/subprojects/language-web/tsconfig.sonar.json
new file mode 100644
index 00000000..54eef68b
--- /dev/null
+++ b/subprojects/language-web/tsconfig.sonar.json
@@ -0,0 +1,17 @@
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 "noEmit": true,
13 "skipLibCheck": true
14 },
15 "include": ["./src/main/js/**/*"],
16 "exclude": ["./src/main/js/xtext/**/*"]
17}