mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 02:41:08 +08:00
Configure app/angular package as jest projects Allow to use jest-preset-angular for app/angular tests
10 lines
261 B
JSON
10 lines
261 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"types": ["webpack-env", "jest", "node"],
|
|
"typeRoots": ["../../node_modules/@types", "node_modules/@types"],
|
|
"allowJs": true
|
|
},
|
|
"include": ["**/*.test.ts", "**/*.d.ts", "setup-jest.ts"]
|
|
}
|