mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-30 05:04:14 +08:00
20 lines
479 B
JSON
20 lines
479 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"types": ["node", "jest"],
|
|
"strict": false,
|
|
"strictNullChecks": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"resolveJsonModule": true,
|
|
"paths": {
|
|
"verdaccio": ["./typings.d.ts"]
|
|
}
|
|
},
|
|
"include": ["./**/*"]
|
|
}
|