about summary refs log tree commit diff
path: root/jsconfig.json
diff options
context:
space:
mode:
authorYamagishi Kazutoshi <ykzts@desire.sh>2022-10-14 10:16:37 +0900
committerGitHub <noreply@github.com>2022-10-14 03:16:37 +0200
commit219c38b9217d6dbb1621c27f64e9bf86bf92ec19 (patch)
tree64531d4cb88106954de193f9f05b623455748485 /jsconfig.json
parentf01310dadbca94c74aa44e0a4725d49c5ac15434 (diff)
Replace `CancelToken` to `AbortSignal` (#19352)
Diffstat (limited to 'jsconfig.json')
-rw-r--r--jsconfig.json22
1 files changed, 22 insertions, 0 deletions
diff --git a/jsconfig.json b/jsconfig.json
new file mode 100644
index 000000000..7471fb9db
--- /dev/null
+++ b/jsconfig.json
@@ -0,0 +1,22 @@
+{
+  "compilerOptions": {
+    "allowJs": true,
+    "baseUrl": "./app/javascript",
+    "checkJs": false,
+    "experimentalDecorators": true,
+    "jsx": "react",
+    "lib": ["DOM", "DOM.Iterable", "ES2022"],
+    "module": "ES2022",
+    "moduleResolution": "node",
+    "noEmit": true,
+    "resolveJsonModule": true,
+    "strict": false,
+    "target": "ES2022"
+  },
+  "exclude": [
+    "**/build/*",
+    "**/node_modules/*",
+    "**/public/*",
+    "**/vendor/*"
+  ]
+}