Files
calendar/packages/embeds/embed-core/tsconfig.json
T
Keith WilliamsandGitHub 7701edb0bb chore: TS config - ignore node_modules in subdirectories (#19680)
* chore: TS config - ignore node_modules in subdirectories

* Update tsconfig.json

* Applied the pattern to the entire monorepo
2025-03-03 15:53:28 -03:00

18 lines
454 B
JSON

{
"extends": "@calcom/tsconfig/base.json",
"compilerOptions": {
"jsx": "react",
"target": "ES2015",
"module": "esnext",
"moduleResolution": "Node",
"baseUrl": ".",
"outDir": "dist",
"paths": {
"@calcom/embed-react": ["../embed-react/src"],
"@calcom/embed-snippet": ["../embed-snippet/src"]
}
},
"include": ["src", "env.d.ts", "index.ts", "*.ts"],
"exclude": ["dist", "build", "**/node_modules/**"]
}