mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 04:21:07 +08:00
25 lines
524 B
JSON
25 lines
524 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"esModuleInterop": true,
|
|
"jsx": "react",
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "es5",
|
|
"lib": [
|
|
"dom",
|
|
"esnext"
|
|
],
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true
|
|
},
|
|
"include": [ "src/*"]
|
|
}
|