2022-03-18 13:42:42 +00:00
|
|
|
{
|
|
|
|
"extends": "@calcom/tsconfig/base.json",
|
2022-04-03 15:47:18 +00:00
|
|
|
"exclude": ["node_modules", "templates"],
|
2022-03-23 21:22:57 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
"strictNullChecks": true,
|
2022-03-24 23:04:07 +00:00
|
|
|
"baseUrl": ".",
|
2022-03-30 12:17:55 +00:00
|
|
|
|
2022-03-24 20:25:35 +00:00
|
|
|
"target": "es5",
|
2022-03-30 12:17:55 +00:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2022-03-24 20:25:35 +00:00
|
|
|
"allowJs": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"incremental": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"resolveJsonModule": true,
|
2022-03-24 23:04:07 +00:00
|
|
|
"jsx": "preserve",
|
2022-03-24 23:43:35 +00:00
|
|
|
"paths": {
|
2022-03-30 12:17:55 +00:00
|
|
|
"@api/*": ["pages/api/*"],
|
|
|
|
"@lib/*": ["lib/*"],
|
|
|
|
"@/*": ["*"]
|
|
|
|
}
|
2022-03-23 21:22:57 +00:00
|
|
|
},
|
2022-04-03 15:47:18 +00:00
|
|
|
"include": ["./**/*.ts*"]
|
2022-03-18 13:42:42 +00:00
|
|
|
}
|