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

28 lines
563 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"allowJs": false,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strictNullChecks": true,
"alwaysStrict": true,
"noImplicitAny": true,
"strictBindCallApply": false,
"noEmit": true,
"types": ["jest", "node"],
"paths": {
"@/*": ["./src/*"]
}
},
"include": [
"src/**/*.ts",
"scripts/**/*.ts",
"**/__mocks__/**/*",
"jest.config.mjs",
"vite.config.*.ts"
],
"exclude": [
"src/individual-entry.ts"
]
}