mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-16 05:03:11 +08:00
# Conflicts: # .vscode/launch.json # CONTRIBUTING.old.md # code/lib/cli/tsconfig.json # scripts/tsconfig.json
62 lines
1.2 KiB
JSON
62 lines
1.2 KiB
JSON
{
|
|
"compileOnSave": false,
|
|
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"incremental": false,
|
|
"noImplicitAny": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": false,
|
|
"jsx": "react",
|
|
"moduleResolution": "Node",
|
|
"target": "ES2020",
|
|
"module": "CommonJS",
|
|
"skipLibCheck": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"strictBindCallApply": true,
|
|
"lib": [
|
|
"dom",
|
|
"esnext"
|
|
],
|
|
|
|
|
|
"types": [
|
|
"node",
|
|
"jest"
|
|
],
|
|
"strict": false,
|
|
"strictNullChecks": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"resolveJsonModule": true,
|
|
"paths": {
|
|
"verdaccio": ["./typings.d.ts"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"dist",
|
|
"**/dist",
|
|
"node_modules",
|
|
"**/node_modules",
|
|
"**/*.spec.ts",
|
|
"**/__tests__",
|
|
"**/*.test.ts",
|
|
"**/setup-jest.ts"
|
|
],
|
|
"include": ["./**/*"],
|
|
"ts-node": {
|
|
"transpileOnly": true,
|
|
"files": true,
|
|
"compilerOptions": {
|
|
"types": [
|
|
"node"
|
|
]
|
|
}
|
|
}
|
|
}
|