You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tsconfig.json
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -26,10 +26,13 @@
26
26
27
27
/* Modules */
28
28
"module": "commonjs", /* Specify what module code is generated. */
29
-
//"rootDir": "./", /* Specify the root folder within your source files. */
29
+
"rootDir": "./src", /* Specify the root folder within your source files. */
30
30
// "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */
31
-
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
32
-
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
31
+
"baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
32
+
"paths": {
33
+
"@codebolt/codeboltjs": ["./src/index"],
34
+
"@codebolt/codeboltjs/*": ["./src/*"]
35
+
}, /* Specify a set of entries that re-map imports to additional lookup locations. */
33
36
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
34
37
// "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */
35
38
"types": ["node"], /* Specify type package names to be included without being referenced in a source file. */
@@ -56,6 +59,7 @@
56
59
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
57
60
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
58
61
"outDir": "dist", /* Specify an output folder for all emitted files. */
62
+
"declarationDir": "dist", /* Specify the output directory for generated declaration files. */
0 commit comments