storybook/scripts/tsconfig.json

48 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-07 17:20:42 +11:00
"lib": ["dom", "esnext"],
"types": ["node", "jest"],
"strict": false,
"strictNullChecks": false,
"forceConsistentCasingInFileNames": true,
"noUnusedLocals": false,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true,
"paths": {
2022-11-07 17:20:42 +11:00
"verdaccio": ["./typings.d.ts"]
}
},
2022-07-21 11:24:07 +02:00
"exclude": [
"dist",
"**/dist",
"node_modules",
"**/node_modules",
"**/*.spec.ts",
"**/__tests__",
"**/setup-jest.ts"
],
2022-11-07 17:20:42 +11:00
"include": ["./**/*", "./.eslintrc.js"],
2022-07-21 11:24:07 +02:00
"ts-node": {
"transpileOnly": true,
"files": true,
"compilerOptions": {
2022-11-07 17:20:42 +11:00
"types": ["node"]
2022-07-21 11:24:07 +02:00
}
}
2022-11-07 17:20:42 +11:00
}