Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
]
},
"engines": {
"node": ">=22",
"node": "^22.13.0 || >=24.0.0",
"pnpm": "10.31.0"
},
"packageManager": "pnpm@10.31.0"
Expand Down
1 change: 0 additions & 1 deletion packages/i18n/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
"@types/react-dom": "catalog:",
"rimraf": "catalog:",
"typescript": "catalog:",
"vite-tsconfig-paths": "catalog:",
"vitest": "catalog:"
},
"peerDependencies": {
Expand Down
4 changes: 1 addition & 3 deletions packages/i18n/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"baseUrl": ".",
"declaration": true,
"declarationMap": true,
"sourceMap": true,

"rootDirs": ["./src", "./tests"],
"rootDir": "./src",
Comment thread
fantonangeli marked this conversation as resolved.
"outDir": "./dist"
},
"include": ["src/**/*"],
Expand Down
9 changes: 3 additions & 6 deletions packages/i18n/vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,11 @@
*/

import { defineConfig } from "vitest/config";
import tsconfigPaths from "vite-tsconfig-paths";

export default defineConfig({
plugins: [
tsconfigPaths({
projects: ["./tsconfig.json"],
}),
],
resolve: {
tsconfigPaths: true,
},
test: {
globals: true,
environment: "jsdom",
Expand Down
1 change: 0 additions & 1 deletion packages/serverless-workflow-diagram-editor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@
"rimraf": "catalog:",
"storybook": "catalog:",
"vite": "catalog:",
"vite-tsconfig-paths": "catalog:",
"vitest": "catalog:"
},
"peerDependencies": {
Expand Down
4 changes: 1 addition & 3 deletions packages/serverless-workflow-diagram-editor/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"types": ["node", "vite/client"],
"baseUrl": ".",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
Comment thread
fantonangeli marked this conversation as resolved.

"rootDirs": ["./src", "./tests"],
"rootDir": "./src",
"outDir": "./dist"
},
"include": ["src/**/*"],
Expand Down
10 changes: 3 additions & 7 deletions packages/serverless-workflow-diagram-editor/vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,11 @@
*/

import { defineConfig } from "vitest/config";
import tsconfigPaths from "vite-tsconfig-paths";

export default defineConfig({
plugins: [
tsconfigPaths({
// Provide an array of paths to the tsconfig files you want to use
projects: ["./tsconfig.test.json"],
}),
],
resolve: {
tsconfigPaths: true,
},
test: {
globals: true,
environment: "jsdom",
Expand Down
Loading
Loading