fix(ckeditor5): build failing due to types path

This commit is contained in:
Elian Doran 2025-05-10 15:18:57 +03:00
parent 929ebf114c
commit dd7df1344e
No known key found for this signature in database
6 changed files with 6 additions and 5 deletions

View File

@ -35,6 +35,7 @@ In the newly copied package, go to `package.json` and edit:
3. Similarly, update `vitest` dependencies to match the monorepo one.
4. Remove the `prepare` entry from the `scripts` section.
5. Change `build:dist` to simply `build` in order to integrate it with NX.
6. In `tsconfig.dist.json`, change `typings/types` to `../typings/types.d.ts` to be compatible with the latest TypeScript version.
## Step 4. Install missing dependencies and build errors

View File

@ -6,7 +6,7 @@
"rootDir": "./src",
"composite": false,
"types": [
"./typings/types"
"../typings/types.d.ts"
]
}
}

View File

@ -6,7 +6,7 @@
"rootDir": "./src",
"composite": false,
"types": [
"./typings/types"
"../typings/types.d.ts"
]
}
}

View File

@ -6,7 +6,7 @@
"rootDir": "./src",
"composite": false,
"types": [
"./typings/types"
"../typings/types.d.ts"
]
}
}

View File

@ -6,7 +6,7 @@
"rootDir": "./src",
"composite": false,
"types": [
"./typings/types"
"../typings/types.d.ts"
]
}
}

View File

@ -6,7 +6,7 @@
"rootDir": "./src",
"composite": false,
"types": [
"./typings/types"
"../typings/types.d.ts"
]
}
}