summaryrefslogtreecommitdiffhomepage
path: root/cloud/app/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'cloud/app/tsconfig.json')
-rw-r--r--cloud/app/tsconfig.json19
1 files changed, 19 insertions, 0 deletions
diff --git a/cloud/app/tsconfig.json b/cloud/app/tsconfig.json
new file mode 100644
index 000000000..7d5871a07
--- /dev/null
+++ b/cloud/app/tsconfig.json
@@ -0,0 +1,19 @@
+{
+ "compilerOptions": {
+ "target": "ESNext",
+ "module": "ESNext",
+ "moduleResolution": "bundler",
+ "allowSyntheticDefaultImports": true,
+ "esModuleInterop": true,
+ "jsx": "preserve",
+ "jsxImportSource": "solid-js",
+ "allowJs": true,
+ "strict": true,
+ "noEmit": true,
+ "types": ["vinxi/types/client"],
+ "isolatedModules": true,
+ "paths": {
+ "~/*": ["./src/*"]
+ }
+ }
+}