cal.pub0.org/tsconfig.json

24 lines
509 B
JSON
Raw Normal View History

2022-03-18 13:42:42 +00:00
{
"extends": "@calcom/tsconfig/base.json",
"exclude": ["node_modules", "templates"],
2022-03-23 21:22:57 +00:00
"compilerOptions": {
"strictNullChecks": true,
"baseUrl": ".",
2022-03-30 12:17:55 +00:00
"target": "es5",
2022-03-30 12:17:55 +00:00
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"noEmit": true,
"incremental": true,
"module": "esnext",
"resolveJsonModule": true,
"jsx": "preserve",
"paths": {
2022-03-30 12:17:55 +00:00
"@api/*": ["pages/api/*"],
"@lib/*": ["lib/*"],
"@/*": ["*"]
}
2022-03-23 21:22:57 +00:00
},
"include": ["./**/*.ts*"]
2022-03-18 13:42:42 +00:00
}