cal.pub0.org/tsconfig.json

18 lines
301 B
JSON
Raw Normal View History

2022-03-18 13:42:42 +00:00
{
"extends": "@calcom/tsconfig/base.json",
"exclude": [
"node_modules"
],
2022-03-23 21:22:57 +00:00
"compilerOptions": {
2022-03-24 16:02:33 +00:00
"lib": ["ES2015"],
"module": "CommonJS",
"outDir": "./dist",
"rootDir": "./",
2022-03-23 21:22:57 +00:00
"strictNullChecks": true,
"baseUrl": "./",
},
2022-03-18 13:42:42 +00:00
"include": [
2022-03-23 21:22:57 +00:00
"./pages/api/*.ts"
2022-03-18 13:42:42 +00:00
]
}