Skip to content

Commit

Permalink
build: add project reference paths
Browse files Browse the repository at this point in the history
  • Loading branch information
tokebe committed Oct 13, 2023
1 parent aaa0810 commit 8c68e3a
Showing 1 changed file with 31 additions and 24 deletions.
55 changes: 31 additions & 24 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,34 @@
{
"compilerOptions": {
"incremental": true,
"outDir": "./built",
"allowJs": true,
"target": "es2020",
"module": "commonjs",
"rootDir": "./src",
"composite": true,
"declaration": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"strict": false,
"noImplicitAny": false,
"skipLibCheck": true
"compilerOptions": {
"incremental": true,
"outDir": "./built",
"allowJs": true,
"target": "es2020",
"module": "commonjs",
"rootDir": "./src",
"composite": true,
"declaration": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"strict": false,
"noImplicitAny": false,
"skipLibCheck": true
},
"include": ["./src/**/*", "./src/biolink.json", "./src/smartapi_specs.json", "./src/predicates.json"],
"exclude": ["node_modules", "__tests__/"],
"references": [
{
"path": "../call-apis"
},
"include": [
"./src/**/*",
"./src/biolink.json",
"./src/smartapi_specs.json",
"./src/predicates.json"
],
"exclude": [
"node_modules",
"__tests__/"
]
{
"path": "../../biomedical_id_resolver"
},
{
"path": "../smartapi-kg"
},
{
"path": "../../biolink-model"
}

]
}

0 comments on commit 8c68e3a

Please sign in to comment.