cal.pub0.org/tsconfig.json

33 lines
566 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": {
"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/*"],
"@prisma/client/*": ["@calcom/prisma/client/*"],
"@lib/*": ["lib/*"]
},
2022-03-23 21:22:57 +00:00
},
2022-03-18 13:42:42 +00:00
"include": [
"./**/*.ts"
2022-03-18 13:42:42 +00:00
]
}