diff --git a/server/src/__tests__/tsconfig.json b/server/src/__tests__/tsconfig.json new file mode 100644 index 0000000000..8c827ac48c --- /dev/null +++ b/server/src/__tests__/tsconfig.json @@ -0,0 +1,8 @@ +{ + "extends": "../../../tsconfig.base.json", + "compilerOptions": { + "outDir": "../../dist-tests", + "rootDir": "." + }, + "include": ["."] +} diff --git a/ui/tsconfig.json b/ui/tsconfig.json index 052ca3bf74..3d90f9c05d 100644 --- a/ui/tsconfig.json +++ b/ui/tsconfig.json @@ -16,5 +16,5 @@ "lexical": ["./node_modules/lexical/index.d.ts"] } }, - "include": ["src", "storybook"] + "include": ["src", "storybook", "vitest.setup.ts"] }