cal.pub0.org/tsconfig.json

31 lines
824 B
JSON
Raw Normal View History

2021-03-22 13:48:48 +00:00
{
"compilerOptions": {
"target": "es5",
2021-11-12 18:10:30 +00:00
"lib": ["dom", "dom.iterable", "esnext"],
"baseUrl": ".",
"paths": {
2021-11-12 18:10:30 +00:00
"@components/*": ["components/*"],
"@lib/*": ["lib/*"],
"@server/*": ["server/*"],
"@ee/*": ["ce/*"]
},
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",
2021-11-12 18:10:30 +00:00
"types": ["@types/jest", "jest-playwright-preset", "expect-playwright"],
"allowJs": false,
"incremental": true
2021-03-22 13:48:48 +00:00
},
2021-11-12 18:10:30 +00:00
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
2021-03-22 13:48:48 +00:00
}