mirror of
https://github.com/twentyhq/twenty
synced 2026-04-21 13:37:22 +00:00
- simplify the base application template - remove --exhaustive option and replace by a --example option like in next.js https://nextjs.org/docs/app/api-reference/cli - Fix some bugs and logs - add a post-card app in twenty-apps/examples/
32 lines
743 B
JSON
32 lines
743 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/*"],
|
|
"package.json": ["./package.json"]
|
|
},
|
|
"jsx": "react"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.d.ts",
|
|
"**/__mocks__/**/*",
|
|
"vite.config.ts",
|
|
"jest.config.mjs"
|
|
],
|
|
"exclude": [
|
|
"src/constants/template/vitest.config.ts",
|
|
"src/constants/template/src/**",
|
|
"src/constants/template/tsconfig.spec.json"
|
|
]
|
|
}
|