mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:21:15 +08:00
23 lines
562 B
JSON
23 lines
562 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "CommonJS",
|
|
"lib": ["es2020", "dom", "dom.iterable"],
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"declaration": true,
|
|
"outDir": "dist",
|
|
"types": ["node"],
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"pretty": true,
|
|
"noErrorTruncation": true,
|
|
"listEmittedFiles": false,
|
|
"noUnusedLocals": false
|
|
},
|
|
"include": ["src/**/*", "src/**/*.json"]
|
|
}
|