Files
music-repo/packages/frontend/tsconfig.json
2026-07-30 00:45:46 +02:00

24 lines
477 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"module": "ES2022",
"moduleResolution": "bundler",
"types": ["react", "react-dom"],
"verbatimModuleSyntax": false,
"paths": {
"@/*": ["./src/*"],
"common": ["../common/src/index.ts"],
"common/*": ["../common/src/*.ts"],
"backend": ["../backend/src/index.ts"],
"backend/*": ["../backend/src/*.ts"],
},
},
"references": [
{ "path": "../common" },
{ "path": "../backend" },
],
}