storybook/scripts/tsconfig.json
Kasper Peulen fac2465219 No unused locals in tsconfig to disable deepscan
Deep scan is not compatible with TS 4.9 yet. And the only issues it seems to find that are not covered yet by TS or ESLint are unused imports. TSC can catch those by enabling noUnusedLocals in tsconfig.
2022-11-29 16:28:00 +01:00

57 lines
1.1 KiB
JSON

{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": ".",
"incremental": false,
"noImplicitAny": true,
"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": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true,
"paths": {
"verdaccio": [
"./typings.d.ts"
]
},
},
"exclude": [
"dist",
"**/dist",
"node_modules",
"**/node_modules"
],
"include": [
"./**/*",
"./.eslintrc.js"
],
"ts-node": {
"transpileOnly": true,
"files": true,
"compilerOptions": {
"types": [
"node"
]
}
}
}