Skip to content

Commit

Permalink
fix: add baseUrl to tsconfig created
Browse files Browse the repository at this point in the history
To avoid alias Typescript ~4.9 and IntelliSense errors we need to set the baseUrl
  • Loading branch information
LouisMazel authored and Julien-R44 committed Jan 15, 2024
1 parent 68cf6b8 commit 5c61a37
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tasks/Scaffold/createTsConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ const task: TaskFn = (_, logger, { absPath }) => {
tsconfig.set('compilerOptions', {
outDir: 'build',
rootDir: './',
baseUrl: './',
sourceMap: true,
paths: {
'App/*': ['./app/*'],
Expand Down

0 comments on commit 5c61a37

Please sign in to comment.