Render front components in a widget. https://github.com/user-attachments/assets/1ae130a4-070d-498e-88f7-80cee847e2fa --------- Co-authored-by: Charles Bochet <charles@twenty.com>
32 lines
789 B
JSON
32 lines
789 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"jsx": "react",
|
|
"allowJs": false,
|
|
"esModuleInterop": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strictNullChecks": true,
|
|
"alwaysStrict": true,
|
|
"noImplicitAny": true,
|
|
"strictBindCallApply": false,
|
|
"noEmit": true,
|
|
"types": ["jest", "node"],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"scripts/**/*.ts",
|
|
"**/__mocks__/**/*",
|
|
"jest.config.mjs"
|
|
],
|
|
"exclude": [
|
|
"src/front-component/remote/mock/**/*",
|
|
"src/front-component/host/generated/host-component-registry.ts",
|
|
"src/front-component/remote/generated/remote-components.ts",
|
|
"src/front-component/remote/generated/remote-elements.ts"
|
|
]
|
|
}
|