aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/tsconfig.json
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2021-10-11 01:03:21 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2021-10-31 19:26:10 +0100
commit299c4d93597b3065e6a1017ebe692cde66fc5e39 (patch)
tree57d634cec30ca37f0af81a37c3011e027589c35c /language-web/tsconfig.json
parentfeat(web): add CodeMirror 6 editor (diff)
downloadrefinery-299c4d93597b3065e6a1017ebe692cde66fc5e39.tar.gz
refinery-299c4d93597b3065e6a1017ebe692cde66fc5e39.tar.zst
refinery-299c4d93597b3065e6a1017ebe692cde66fc5e39.zip
feat(web): experiment with Lezer parser
Diffstat (limited to 'language-web/tsconfig.json')
-rw-r--r--language-web/tsconfig.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/language-web/tsconfig.json b/language-web/tsconfig.json
index 7f43a8b5..d028a64f 100644
--- a/language-web/tsconfig.json
+++ b/language-web/tsconfig.json
@@ -4,7 +4,7 @@
4 "module": "ES2020", 4 "module": "ES2020",
5 "moduleResolution": "node", 5 "moduleResolution": "node",
6 "paths": { 6 "paths": {
7 "xtext/*": ["./src/main/js/xtext/*"] 7 "xtext/*": ["./src/main/js/xtext/*"],
8 }, 8 },
9 "esModuleInterop": true, 9 "esModuleInterop": true,
10 "allowSyntheticDefaultImports": true, 10 "allowSyntheticDefaultImports": true,
@@ -16,5 +16,5 @@
16 "noEmit": true 16 "noEmit": true
17 }, 17 },
18 "include": ["./src/main/js/**/*"], 18 "include": ["./src/main/js/**/*"],
19 "exclude": ["./src/main/js/xtext/**/*"] 19 "exclude": ["./build/generated/sources/lezer/*"]
20} 20}