Files
test/frontend/storybook/tsconfig.json
Benjamin Falch 2bc741fb78
Some checks failed
Mark Stale PRs / stale (push) Has been cancelled
adding monkeytype
2026-04-23 13:53:44 +02:00

23 lines
463 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"allowJs": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"types": ["vite/client"],
"paths": {
"#.storybook/*": ["./.storybook/*"]
},
"strictNullChecks": true
},
"include": [
".storybook/**/*.ts",
".storybook/**/*.tsx",
"stories/**/*.ts",
"stories/**/*.tsx",
"stories/types/*.d.ts"
]
}