aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/tsconfig.json
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <marussy@mit.bme.hu>2021-08-22 19:54:51 +0200
committerLibravatar Kristóf Marussy <marussy@mit.bme.hu>2021-08-22 19:54:51 +0200
commit8cbf8fdcfdceab8a330bdc82e4260a55c125c37d (patch)
tree0354dcc6ce0704fc953e7665ecfcc700609549a2 /language-web/tsconfig.json
parentBump Material-UI version (diff)
downloadrefinery-8cbf8fdcfdceab8a330bdc82e4260a55c125c37d.tar.gz
refinery-8cbf8fdcfdceab8a330bdc82e4260a55c125c37d.tar.zst
refinery-8cbf8fdcfdceab8a330bdc82e4260a55c125c37d.zip
Covert language-web to TypeScript
Diffstat (limited to 'language-web/tsconfig.json')
-rw-r--r--language-web/tsconfig.json22
1 files changed, 22 insertions, 0 deletions
diff --git a/language-web/tsconfig.json b/language-web/tsconfig.json
new file mode 100644
index 00000000..e9d8b4d0
--- /dev/null
+++ b/language-web/tsconfig.json
@@ -0,0 +1,22 @@
1{
2 "compilerOptions": {
3 "target": "ES2020",
4 "module": "ES2020",
5 "moduleResolution": "node",
6 "paths": {
7 "xtext/*": ["./src/main/js/xtext/*"]
8 },
9 "esModuleInterop": true,
10 "allowSyntheticDefaultImports": true,
11 "jsx": "react",
12 "strict": true,
13 "noImplicitOverride": true,
14 "noImplicitReturns": true,
15 "noEmit": true
16 },
17 "include": ["./src/main/js/**/*"],
18 "exclude": [
19 "./src/main/js/xtext/**/*",
20 "./node_modules/**/*"
21 ]
22}