mirror of
https://github.com/twentyhq/twenty
synced 2026-04-21 21:47:38 +00:00
Add Storybook stories and example components to test event forwarding through the front component renderer: form events (text input, checkbox, focus/blur, submit), keyboard events (key/code/modifiers), and host API calls (navigate, snackbar, progress, close panel)
36 lines
856 B
JSON
36 lines
856 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"esModuleInterop": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"jsx": "react-jsx",
|
|
"moduleResolution": "bundler",
|
|
"strictNullChecks": true,
|
|
"alwaysStrict": true,
|
|
"noImplicitAny": true,
|
|
"strictBindCallApply": false,
|
|
"noEmit": true,
|
|
"types": ["jest", "node"],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.d.ts",
|
|
"scripts/**/*.ts",
|
|
".storybook/*.ts",
|
|
".storybook/*.tsx",
|
|
"**/__mocks__/**/*",
|
|
"**/__tests__/**/*",
|
|
"vite.config.ts"
|
|
],
|
|
"exclude": [
|
|
"src/remote/mock/**/*",
|
|
"src/host/generated/host-component-registry.ts",
|
|
"src/remote/generated/remote-components.ts",
|
|
"src/remote/generated/remote-elements.ts"
|
|
]
|
|
}
|