@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
27 lines (26 loc) • 752 B
JSON
{
"extends": "../../../tsconfig.base",
"compilerOptions": {
"declaration": true,
"declarationMap": true,
"noImplicitAny": false,
"noImplicitThis": false,
"isolatedModules": false,
"jsx": "react",
"lib": ["es2022", "dom"],
"types": ["node", "jest"],
"typeRoots": ["./../node_modules/@types", "./../../../node_modules/@types"],
"rootDir": ".",
"outDir": "../lib/",
"paths": {
"*": ["./*"],
"react": ["./../../../node_modules/@types/react"],
"@types/react": ["./../../../node_modules/@types/react"],
"@tests/*": ["./__tests__/*"]
}
},
"references": [
// this is how we declare a dependency from
{ "path": "../" } // this project to the one at the root dir`
]
}