mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 14:21:15 +08:00
# Conflicts: # .vscode/launch.json # CONTRIBUTING.old.md # code/lib/cli/tsconfig.json # scripts/tsconfig.json
16 lines
339 B
JSON
16 lines
339 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "CommonJS",
|
|
"lib": ["es2020", "dom"],
|
|
"outDir": "dist",
|
|
"types": ["node"],
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true
|
|
},
|
|
"include": ["src/**/*", "src/**/*.json"]
|
|
}
|