cal.pub0.org/tsconfig.json

24 lines
509 B
JSON

{
"extends": "@calcom/tsconfig/base.json",
"exclude": ["node_modules", "templates"],
"compilerOptions": {
"strictNullChecks": true,
"baseUrl": ".",
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"noEmit": true,
"incremental": true,
"module": "esnext",
"resolveJsonModule": true,
"jsx": "preserve",
"paths": {
"@api/*": ["pages/api/*"],
"@lib/*": ["lib/*"],
"@/*": ["*"]
}
},
"include": ["./**/*.ts*"]
}