2021-11-29 06:40:55 -08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"experimentalDecorators": true,
|
2021-12-11 09:34:36 -08:00
|
|
|
"emitDecoratorMetadata": true,
|
2021-11-29 06:40:55 -08:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"jsx": "react",
|
|
|
|
"lib": ["dom", "es2020", "dom.iterable", "esnext.asynciterable"],
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
2023-11-22 19:32:21 +05:30
|
|
|
"noErrorTruncation": true,
|
2021-11-29 06:40:55 -08:00
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitOverride": false,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": false,
|
|
|
|
"sourceMap": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"noEmit": true,
|
2023-02-16 04:39:46 +01:00
|
|
|
"skipLibCheck": true,
|
2023-07-01 13:25:51 -04:00
|
|
|
"ignoreDeprecations": "5.0",
|
2021-11-29 06:40:55 -08:00
|
|
|
"target": "es2020",
|
|
|
|
"paths": {
|
|
|
|
"@server/*": ["./server/*"],
|
|
|
|
"@shared/*": ["./shared/*"],
|
|
|
|
"~/*": ["./app/*"]
|
|
|
|
}
|
|
|
|
},
|
2023-11-22 19:32:21 +05:30
|
|
|
"exclude": ["node_modules", "build", "server/migrations"]
|
|
|
|
}
|