2022-03-31 08:45:47 +00:00
{
"extends" : "@calcom/tsconfig/base.json" ,
"compilerOptions" : {
"module" : "ESNext" ,
2023-03-28 18:17:40 +00:00
"target" : "ES2015" ,
2022-03-31 08:45:47 +00:00
"moduleResolution" : "Node" ,
"baseUrl" : "." ,
2022-04-25 04:33:00 +00:00
"declaration" : true ,
"jsx" : "preserve" ,
2023-03-30 16:20:39 +00:00
"outDir" : "dist" ,
2022-04-25 04:33:00 +00:00
"paths" : {
2023-03-30 16:20:39 +00:00
"@calcom/embed-core" : [ "../embed-core/src" ] ,
"@calcom/embed-snippet" : [ "../embed-snippet/src" ]
2022-04-26 08:48:17 +00:00
}
2022-03-31 08:45:47 +00:00
} ,
2023-06-06 11:59:57 +00:00
"include" : [ "**/*.ts" , "**/*.tsx" , "env.d.ts" ] ,
2023-06-01 20:41:30 +00:00
// Exclude "test" because that has `api.test.ts` which imports @calcom/embed-react which needs it to be built using this tsconfig.json first. Excluding it here prevents type-check from validating test folder
"exclude" : [ "node_modules" , "test" ]
2022-03-31 08:45:47 +00:00
}