diff --git a/tsconfig.json b/tsconfig.json index 77d98cd..d74d8e2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,8 +3,16 @@ "extends": "../../tsconfig.base.json", "compilerOptions": { "rootDir": "./src", - "outDir": "./built" + "outDir": "./built", + "paths": { + "biolink-model": ["../biolink-model"] + } }, "include": ["./src/**/*"], - "exclude": ["node_modules", "__test__/"] + "exclude": ["node_modules", "__test__/"], + "references": [ + { + "path": "../biolink-model" + } + ] }