mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 03:21:07 +08:00
`skipDefaultLibCheck` is deprecated so there is no need to add it anymore. I added `skipLibCheck` in the angular example because it looks like there are some type incompatibility between some types coming from node_modules we have in the monorepo. (Not really a surprise with the number of deps we have) Signed-off-by: Gaëtan Maisse <gaetanmaisse@gmail.com>
21 lines
429 B
JSON
21 lines
429 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"incremental": false,
|
|
"noImplicitAny": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"jsx": "react",
|
|
"module": "commonjs",
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"target": "es5",
|
|
"types": ["jest", "node"],
|
|
"lib": ["es2017", "dom"]
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|