cal.pub0.org/tsconfig.json

52 lines
935 B
JSON
Raw Normal View History

2021-03-22 13:48:48 +00:00
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"baseUrl": ".",
"paths": {
"@components/*": [
"components/*"
],
"@lib/*": [
"lib/*"
],
"@server/*": [
"server/*"
],
"@ee/*": [
"ee/*"
]
},
2021-03-22 13:48:48 +00:00
"skipLibCheck": true,
2021-08-16 16:15:03 +00:00
"strict": true,
"strictNullChecks": true,
2021-03-22 13:48:48 +00:00
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"useUnknownInCatchVariables": true,
2021-10-07 15:07:57 +00:00
"jsx": "preserve",
"types": [
"@types/jest",
"jest-playwright-preset",
"expect-playwright"
],
2021-10-26 14:33:35 +00:00
"allowJs": false
2021-03-22 13:48:48 +00:00
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
]
2021-03-22 13:48:48 +00:00
}