mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 19:41:06 +08:00
26 lines
522 B
JSON
26 lines
522 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": "./src",
|
|
"types": [
|
|
"node",
|
|
"jest"
|
|
],
|
|
"strict": false,
|
|
"strictNullChecks": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"src/**/template*",
|
|
"**/*.test.*",
|
|
"src/frameworks/**/*"
|
|
]
|
|
} |