Files
twenty/packages/twenty-sdk/tsconfig.json
T

37 lines
920 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",
".storybook/*.ts",
".storybook/*.tsx",
"**/__mocks__/**/*",
"**/__tests__/**/*",
"vite.config.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"
]
}