mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:11:23 +08:00
So we do not get the warning: ESM You have emitDecoratorMetadata enabled but @swc/core was not installed, skipping swc plugin ...anymore
18 lines
410 B
JSON
18 lines
410 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "CommonJS",
|
|
"lib": ["es2020", "dom"],
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"outDir": "dist",
|
|
"types": ["node"],
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true
|
|
},
|
|
"include": ["src/**/*", "src/**/*.json"]
|
|
}
|