Files
twenty/packages/twenty-shared/tsconfig.json
T
2026-01-28 16:52:10 +00:00

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"
]
}