feat(create-turbo): create kitchen-sink
This commit is contained in:
commit
4625c93980
80 changed files with 11572 additions and 0 deletions
16
packages/jest-presets/node/jest-preset.mjs
Normal file
16
packages/jest-presets/node/jest-preset.mjs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
/** @type {import('jest').Config} */
|
||||
const config = {
|
||||
roots: ["<rootDir>"],
|
||||
transform: {
|
||||
"^.+\\.tsx?$": "ts-jest",
|
||||
},
|
||||
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"],
|
||||
modulePathIgnorePatterns: [
|
||||
"<rootDir>/test/__fixtures__",
|
||||
"<rootDir>/node_modules",
|
||||
"<rootDir>/dist",
|
||||
],
|
||||
preset: "ts-jest",
|
||||
};
|
||||
|
||||
export default config;
|
||||
Loading…
Add table
Add a link
Reference in a new issue