19 lines
404 B
JSON
19 lines
404 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"types": ["react", "react-dom"],
|
|
"baseUrl": ".",
|
|
"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" },
|
|
],
|
|
}
|