20 lines
671 B
JSON
20 lines
671 B
JSON
{
|
|
"extends": "@calcom/tsconfig/base.json",
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"target": "ES2015",
|
|
"moduleResolution": "Node",
|
|
"baseUrl": ".",
|
|
"declaration": true,
|
|
"jsx": "preserve",
|
|
"outDir": "dist",
|
|
"paths": {
|
|
"@calcom/embed-core": ["../embed-core/src"],
|
|
"@calcom/embed-snippet": ["../embed-snippet/src"]
|
|
}
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx", "env.d.ts"],
|
|
// 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"]
|
|
}
|