mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:41:13 +08:00
26 lines
537 B
JSON
26 lines
537 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "src",
|
|
"paths": { "*": ["types/*"] },
|
|
"target": "es5",
|
|
"module": "esnext",
|
|
"lib" : ["esnext", "dom"],
|
|
"jsx": "preserve",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"skipLibCheck": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
"exclude": [
|
|
"src/setupTests.js"
|
|
]
|
|
}
|