wewe-rss / tsconfig.json
div-wang's picture
上传文件
95d29a5 verified
raw
history blame contribute delete
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/*"
]
}
}
}