Skip to content

Commit 71144aa

Browse files
committed
Fix: remove extra files from release package
After shifting config files to TS these were now being included in the release package. This commit removes them from the release package.
1 parent a6d1a43 commit 71144aa

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tsconfig.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
/* Modules */
2828
"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. */,
3030
// "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */
3131
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
3232
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
@@ -99,5 +99,6 @@
9999
/* Completeness */
100100
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
101101
"skipLibCheck": true /* Skip type checking all .d.ts files. */
102-
}
102+
},
103+
"include": ["src"]
103104
}

0 commit comments

Comments
 (0)