storybook/scripts/tsconfig.json

57 lines
1.1 KiB
JSON
Raw Normal View History

{
2022-07-21 11:24:07 +02:00
"compileOnSave": false,
"compilerOptions": {
2022-07-21 11:24:07 +02:00
"baseUrl": ".",
"incremental": false,
"noImplicitAny": true,
"jsx": "react",
"moduleResolution": "Node",
"target": "ES2020",
"module": "CommonJS",
"skipLibCheck": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": true,
"strictBindCallApply": true,
2022-11-14 14:05:51 +01:00
"lib": [
"dom",
"esnext"
],
"types": [
"node",
"jest"
],
"strict": false,
"strictNullChecks": false,
"forceConsistentCasingInFileNames": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true,
"paths": {
2022-11-14 14:05:51 +01:00
"verdaccio": [
"./typings.d.ts"
]
},
},
2022-07-21 11:24:07 +02:00
"exclude": [
"dist",
"**/dist",
"node_modules",
2022-11-14 14:05:51 +01:00
"**/node_modules"
],
"include": [
"./**/*",
"./.eslintrc.js"
2022-07-21 11:24:07 +02:00
],
"ts-node": {
"transpileOnly": true,
"files": true,
"compilerOptions": {
2022-11-14 14:05:51 +01:00
"types": [
"node"
]
2022-07-21 11:24:07 +02:00
}
}
2022-11-14 14:05:51 +01:00
}