mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-16 05:03:11 +08:00
28 lines
587 B
JSON
28 lines
587 B
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"incremental": false,
|
|
"noImplicitAny": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"jsx": "react",
|
|
"module": "commonjs",
|
|
"skipDefaultLibCheck": true,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"target": "es5",
|
|
"types": ["jest"],
|
|
"lib": ["es2017", "dom"]
|
|
},
|
|
"exclude": [
|
|
"**/dist",
|
|
"node_modules",
|
|
"**/node_modules",
|
|
"**/*.spec.ts",
|
|
"**/__tests__",
|
|
"**/*.test.ts"
|
|
]
|
|
}
|