mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 19:31:07 +08:00
21 lines
523 B
JSON
21 lines
523 B
JSON
{
|
|
/* tsconfig.json can have comments */
|
|
// tsconfig.json can have comments
|
|
"lerna": {
|
|
"disabled": true
|
|
},
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"outDir": "./dist/out-tsc",
|
|
"sourceMap": true,
|
|
"moduleResolution": "node",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"target": "es5",
|
|
"typeRoots": ["../../node_modules/@types", "node_modules/@types"],
|
|
"lib": ["es2017", "dom"]
|
|
}
|
|
}
|