mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-17 05:02:23 +08:00
30 lines
744 B
JSON
30 lines
744 B
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"incremental": false,
|
|
"noImplicitAny": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"jsx": "react",
|
|
"moduleResolution": "Node",
|
|
"target": "ES2020",
|
|
"module": "CommonJS",
|
|
"skipLibCheck": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"strictBindCallApply": true,
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"noUnusedLocals": true,
|
|
"types": ["jest"]
|
|
},
|
|
"exclude": ["dist", "**/dist", "node_modules", "**/node_modules", "**/setup-jest.ts"],
|
|
"ts-node": {
|
|
"transpileOnly": true,
|
|
"files": true,
|
|
"compilerOptions": {
|
|
"types": ["node"]
|
|
}
|
|
}
|
|
}
|