Files
AFFiNE-Mirror/packages/backend/server/tsconfig.json
darkskygit 83ed215f4a feat(server): new email template (#9528)
use `yarn af server dev:mail` to preview all mail template
fix CLOUD-93
2025-01-22 02:55:25 +00:00

21 lines
539 B
JSON

{
"extends": "../../../tsconfig.node.json",
"compilerOptions": {
"jsx": "react-jsx",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"verbatimModuleSyntax": false,
"rootDir": "./src",
"outDir": "./dist",
"tsBuildInfoFile": "./dist/tsconfig.tsbuildinfo"
},
"include": ["./src"],
"references": [
{ "path": "../../../tests/kit" },
{ "path": "../../../tools/cli" },
{ "path": "../../../tools/utils" },
{ "path": "../native" }
]
}