mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-15 05:02:24 +08:00
30 lines
815 B
JSON
30 lines
815 B
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"incremental": false,
|
|
"noImplicitAny": true,
|
|
"jsx": "react",
|
|
"moduleResolution": "bundler",
|
|
"target": "es2022",
|
|
"module": "ES2022",
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"strictBindCallApply": true,
|
|
"lib": ["dom", "es2023"],
|
|
"types": ["node"],
|
|
"strict": true,
|
|
"strictNullChecks": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"exclude": ["dist", "**/dist", "node_modules", "**/node_modules"],
|
|
"include": ["./**/*", "./.eslintrc.js"]
|
|
}
|