mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 01:01:05 +08:00
27 lines
560 B
JSON
27 lines
560 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": "./src",
|
|
"types": [
|
|
"webpack-env",
|
|
"jest"
|
|
],
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"src/**/*.test.*",
|
|
"src/**/tests/**/*",
|
|
"src/**/__tests__/**/*",
|
|
"src/**/*.stories.*",
|
|
"src/**/*.mockdata.*",
|
|
"src/**/__testfixtures__/**"
|
|
]
|
|
} |