Skip to content

Commit 8642810

Browse files
committed
Merge branch 'main' into copilot/update-objectql-to-latest-version
2 parents 8389abd + 4156846 commit 8642810

4 files changed

Lines changed: 26 additions & 2 deletions

File tree

apps/playground/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"type": "module",
77
"scripts": {
88
"dev": "vite",
9-
"build": "tsc -b && vite build",
9+
"build": "vite build",
1010
"lint": "eslint .",
1111
"preview": "vite preview"
1212
},

apps/playground/tsconfig.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,21 @@
1919
"noUnusedLocals": true,
2020
"noUnusedParameters": true,
2121
"noFallthroughCasesInSwitch": true,
22-
"noUncheckedSideEffectImports": true
22+
"noUncheckedSideEffectImports": true,
23+
24+
"baseUrl": ".",
25+
"paths": {
26+
"@object-ui/components": ["../../packages/components/src"],
27+
"@object-ui/core": ["../../packages/core/src"],
28+
"@object-ui/react": ["../../packages/react/src"],
29+
"@object-ui/types": ["../../packages/types/src"],
30+
"@object-ui/designer": ["../../packages/designer/src"],
31+
"@object-ui/plugin-charts": ["../../packages/plugin-charts/src"],
32+
"@object-ui/plugin-editor": ["../../packages/plugin-editor/src"],
33+
"@object-ui/plugin-kanban": ["../../packages/plugin-kanban/src"],
34+
"@object-ui/plugin-markdown": ["../../packages/plugin-markdown/src"],
35+
"@/*": ["../../packages/components/src/*"]
36+
}
2337
},
2438
"include": ["src"]
2539
}

apps/playground/vite.config.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ export default defineConfig({
1111
'@object-ui/components': path.resolve(__dirname, '../../packages/components/src'),
1212
'@object-ui/core': path.resolve(__dirname, '../../packages/core/src'),
1313
'@object-ui/react': path.resolve(__dirname, '../../packages/react/src'),
14+
'@object-ui/types': path.resolve(__dirname, '../../packages/types/src'),
15+
'@object-ui/designer': path.resolve(__dirname, '../../packages/designer/src'),
16+
'@object-ui/plugin-charts': path.resolve(__dirname, '../../packages/plugin-charts/src'),
17+
'@object-ui/plugin-editor': path.resolve(__dirname, '../../packages/plugin-editor/src'),
18+
'@object-ui/plugin-kanban': path.resolve(__dirname, '../../packages/plugin-kanban/src'),
19+
'@object-ui/plugin-markdown': path.resolve(__dirname, '../../packages/plugin-markdown/src'),
1420
'@': path.resolve(__dirname, '../../packages/components/src'),
1521
}
1622
},

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
"private": true,
44
"license": "MIT",
55
"homepage": "https://www.objectui.org",
6+
"engines": {
7+
"node": ">=18",
8+
"pnpm": ">=9"
9+
},
610
"workspaces": [
711
"packages/*",
812
"examples/*",

0 commit comments

Comments
 (0)