mywxrss / tsconfig.json
zqjilove's picture
Upload 16 files
4cef6a2 verified
raw
history blame contribute delete
No virus
483 Bytes
{
"compilerOptions": {
"baseUrl": ".",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": true,
"noImplicitAny": false,
"strictBindCallApply": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"paths": {
"@server/*": [
"./apps/server/src/*"
],
"@web/*": [
"./apps/web/src/*"
]
}
}
}