* upgrade turborepo from 1 to 2.5 * Fix tsconfig.json paths path * chore: fix root path on tsconfig.paths * chore: add baseUrl to tsconfig.json * chore: tsconfig.json issue * try: CI without tsconfig paths * chore: add only local paths on tsconfig.json * chore: Fix docs * Fix missing env var on turbo.json
28 lines
752 B
JSON
28 lines
752 B
JSON
{
|
|
"extends": "@calcom/tsconfig/react-library.json",
|
|
"include": [
|
|
"../types/@wojtekmaj__react-daterange-picker.d.ts",
|
|
"../types/business-days-plugin.d.ts",
|
|
"../types/next-auth.d.ts",
|
|
"../types/tanstack-table.d.ts",
|
|
"../types/next.d.ts",
|
|
"../types/window.d.ts",
|
|
"./server"
|
|
],
|
|
"exclude": ["**/node_modules/**", "./react", "./server/**/*.test.ts", "./server/**/*.spec.ts"],
|
|
"compilerOptions": {
|
|
"isolatedModules": false,
|
|
"noEmit": false,
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"experimentalDecorators": true,
|
|
"declarationMap": false,
|
|
"resolveJsonModule": true,
|
|
"declarationDir": "types/server",
|
|
"moduleResolution": "node",
|
|
"paths": {
|
|
"~/*": ["./*"]
|
|
}
|
|
}
|
|
}
|