Skip to content

Commit df07742

Browse files
Added baseUrl and paths configuration to tsconfig.json for module resolution
1 parent f1fb27e commit df07742

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

ingestion/tsconfig.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,11 @@
108108

109109
/* Completeness */
110110
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
111-
"skipLibCheck": true /* Skip type checking all .d.ts files. */
111+
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
112+
113+
"baseUrl": "./src",
114+
"paths": {
115+
"@/*": ["./*"]
116+
}
112117
}
113118
}

0 commit comments

Comments
 (0)