cal/packages/embeds/embed-react/tsconfig.json

20 lines
679 B
JSON
Raw Normal View History

2022-03-31 05:45:47 -03:00
{
"extends": "@calcom/tsconfig/base.json",
"compilerOptions": {
"module": "ESNext",
"target": "ES2015",
2022-03-31 05:45:47 -03:00
"moduleResolution": "Node",
"baseUrl": ".",
"declaration": true,
"jsx": "preserve",
"outDir": "dist",
"paths": {
"@calcom/embed-core": ["../embed-core/src"],
"@calcom/embed-snippet": ["../embed-snippet/src"]
}
2022-03-31 05:45:47 -03:00
},
"include": ["src/**/*.ts", "src/**/*.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"]
2022-03-31 05:45:47 -03:00
}