* chore: TS config - ignore node_modules in subdirectories * Update tsconfig.json * Applied the pattern to the entire monorepo
12 lines
235 B
JSON
12 lines
235 B
JSON
{
|
|
"extends": "@calcom/tsconfig/base.json",
|
|
"compilerOptions": {
|
|
"target": "ES5",
|
|
"resolveJsonModule": true,
|
|
"baseUrl": "./",
|
|
"outDir": "./dist"
|
|
},
|
|
"include": ["."],
|
|
"exclude": ["dist", "**/node_modules/**"]
|
|
}
|