-
-
Notifications
You must be signed in to change notification settings - Fork 433
Closed
Labels
pinneddon't let probot-stale closedon't let probot-stale close
Description
I have a project where I'm using ts-loader@6.1.0 with projectReferences: true and following tsconfig:
{
"extends": "xxx/typescript/tsconfig.json",
"compilerOptions": {
"composite": true,
"incremental": true,
"tsBuildInfoFile": "./.tscache/tsconfig.tsbuildinfo",
"target": "es5",
"module": "commonjs",
"baseUrl": ".",
"rootDir": "./src",
"outDir": "./lib",
"declaration": true,
"declarationDir": "./lib",
"typeRoots": [
"./node_modules/@types"
],
"paths": {
"web-modules-core": [
"../core"
],
}
},
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"references": [
{
"path": "../core"
},
]
}The project is a lerna monorepository.
On first build I get error that web-modules-core can't be resolved. Even though web-modules-core package (located in ../core) builds itself during the startup.
If I stop webpack and start it again it succeeds...
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
pinneddon't let probot-stale closedon't let probot-stale close