@myrialabs/clopen 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
- package/tsconfig.json +41 -0
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@myrialabs/clopen",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "All-in-one web workspace for Claude Code & OpenCode — chat, terminal, git, browser preview, checkpoints, and real-time collaboration",
|
|
5
5
|
"author": "Myria Labs",
|
|
6
6
|
"license": "MIT",
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
// Basic Options
|
|
4
|
+
"target": "ES2022",
|
|
5
|
+
"module": "ES2022",
|
|
6
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
7
|
+
"moduleResolution": "bundler",
|
|
8
|
+
"resolveJsonModule": true,
|
|
9
|
+
"allowJs": true,
|
|
10
|
+
"checkJs": true,
|
|
11
|
+
"esModuleInterop": true,
|
|
12
|
+
"forceConsistentCasingInFileNames": true,
|
|
13
|
+
"skipLibCheck": true,
|
|
14
|
+
"sourceMap": true,
|
|
15
|
+
"strict": true,
|
|
16
|
+
|
|
17
|
+
// Path Aliases
|
|
18
|
+
"baseUrl": ".",
|
|
19
|
+
"paths": {
|
|
20
|
+
"$backend": ["./backend"],
|
|
21
|
+
"$backend/*": ["./backend/*"],
|
|
22
|
+
"$frontend": ["./frontend"],
|
|
23
|
+
"$frontend/*": ["./frontend/*"],
|
|
24
|
+
"$shared": ["./shared"],
|
|
25
|
+
"$shared/*": ["./shared/*"]
|
|
26
|
+
},
|
|
27
|
+
|
|
28
|
+
// Svelte & Type Checking
|
|
29
|
+
"types": ["svelte", "vite/client", "bun-types"],
|
|
30
|
+
"isolatedModules": true,
|
|
31
|
+
"allowSyntheticDefaultImports": true
|
|
32
|
+
},
|
|
33
|
+
"include": [
|
|
34
|
+
"frontend/**/*.ts",
|
|
35
|
+
"frontend/**/*.js",
|
|
36
|
+
"frontend/**/*.svelte",
|
|
37
|
+
"backend/**/*.ts",
|
|
38
|
+
"backend/**/*.js"
|
|
39
|
+
],
|
|
40
|
+
"exclude": ["node_modules", "dist", "build"]
|
|
41
|
+
}
|