2021-03-22 13:48:48 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
2021-10-25 13:05:21 +00:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
|
|
|
"esnext"
|
|
|
|
],
|
2021-06-24 22:15:18 +00:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
2021-10-25 13:05:21 +00:00
|
|
|
"@components/*": [
|
|
|
|
"components/*"
|
|
|
|
],
|
|
|
|
"@lib/*": [
|
|
|
|
"lib/*"
|
|
|
|
],
|
|
|
|
"@server/*": [
|
|
|
|
"server/*"
|
|
|
|
],
|
|
|
|
"@ee/*": [
|
|
|
|
"ee/*"
|
|
|
|
]
|
2021-06-24 22:15:18 +00:00
|
|
|
},
|
2021-03-22 13:48:48 +00:00
|
|
|
"skipLibCheck": true,
|
2021-08-16 16:15:03 +00:00
|
|
|
"strict": true,
|
2021-09-27 14:47:55 +00:00
|
|
|
"strictNullChecks": true,
|
2021-03-22 13:48:48 +00:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
2021-10-22 20:08:04 +00:00
|
|
|
"useUnknownInCatchVariables": true,
|
2021-10-07 15:07:57 +00:00
|
|
|
"jsx": "preserve",
|
2022-01-07 20:23:37 +00:00
|
|
|
"typeRoots": ["./types"],
|
2021-10-25 13:05:21 +00:00
|
|
|
"types": [
|
|
|
|
"@types/jest",
|
|
|
|
],
|
2021-12-14 12:31:54 +00:00
|
|
|
"allowJs": true,
|
2021-10-30 15:54:21 +00:00
|
|
|
"incremental": true
|
2021-03-22 13:48:48 +00:00
|
|
|
},
|
2021-10-25 13:05:21 +00:00
|
|
|
"include": [
|
|
|
|
"next-env.d.ts",
|
2021-12-07 15:48:08 +00:00
|
|
|
"@types/*.d.ts",
|
2021-10-25 13:05:21 +00:00
|
|
|
"**/*.ts",
|
|
|
|
"**/*.tsx"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
2021-12-15 16:25:49 +00:00
|
|
|
],
|
|
|
|
"ts-node": {
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "CommonJS",
|
|
|
|
"types": ["node"],
|
|
|
|
}
|
|
|
|
}
|
2021-03-22 13:48:48 +00:00
|
|
|
}
|