tmagic-editor/runtime/react/tsconfig.json
2025-03-06 20:22:52 +08:00

15 lines
392 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"baseUrl": "./",
"jsx": "react",
"forceConsistentCasingInFileNames": true,
"types": ["node"],
"paths": {
// 内部模块都指向 src/index.ts, 会有更好的代码跳转体验.
"@tmagic/*": ["../../packages/*/src"],
"@tmagic/react-runtime-help": ["../react-runtime-help/src"],
},
},
}