cal.pub0.org/tsconfig.json

31 lines
523 B
JSON

{
"extends": "@calcom/tsconfig/base.json",
"exclude": [
"node_modules"
],
"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"]
}