Skip to content

Commit cc5ed3c

Browse files
committed
🔧 chore[tsconfig]: update output directory and add include/exclude settings
1 parent db3623d commit cc5ed3c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

‎report-server/tsconfig.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
// "sourceMap": true, /* Create source map files for emitted JavaScript files. */
5656
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
5757
// "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-
"outDir": "./build/dist", /* Specify an output folder for all emitted files. */
58+
"outDir": "./dist", /* Specify an output folder for all emitted files. */
5959
// "removeComments": true, /* Disable emitting comments. */
6060
// "noEmit": true, /* Disable emitting files from a compilation. */
6161
// "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
@@ -104,5 +104,7 @@
104104
/* Completeness */
105105
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
106106
"skipLibCheck": true /* Skip type checking all .d.ts files. */
107-
}
107+
},
108+
"include": ["src/**/*.ts"],
109+
"exclude": ["node_modules", "dist"]
108110
}

0 commit comments

Comments
 (0)