Files
twenty/packages/twenty-sdk/tsconfig.json
T
Raphaël BosiandGitHub f0bc9fcb43 [FRONT COMPONENTS] Move to twenty-sdk (#17587)
Move front components from twenty-shared to twenty-sdk
2026-02-02 12:21:53 +00:00

36 lines
907 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",
"**/__mocks__/**/*",
"**/__tests__/**/*",
"vite.config.ts",
"scripts/generateBarrels.ts",
"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"
]
}