Skip to content

Commit

Permalink
fix: tsconfig root dir
Browse files Browse the repository at this point in the history
  • Loading branch information
koladilip committed Jan 31, 2024
1 parent e10afeb commit c6419bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
"test": "jest --coverage --verbose",
"build": "tsc",
"clean": "rm -rf build",
"build:clean": "npm run clean && npm run build",
"lint:fix": "eslint . --fix",
"lint:check": "eslint . || exit 1",
"format": "prettier --write '**/*.ts' '**/*.js' '**/*.json'",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

/* Modules */
"module": "commonjs" /* Specify what module code is generated. */,
"rootDir": "./" /* Specify the root folder within your source files. */,
"rootDir": "./src" /* Specify the root folder within your source files. */,
"moduleResolution": "node" /* Specify how TypeScript looks up a file from a given module specifier. */,
"baseUrl": "./" /* Specify the base directory to resolve non-relative module names. */,
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
Expand Down

0 comments on commit c6419bc

Please sign in to comment.