about summary refs log tree commit diff
path: root/jsconfig.json
diff options
context:
space:
mode:
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/*"
+  ]
+}