Skip to content

Commit 24898be

Browse files
Build Debugging
1 parent 651acad commit 24898be

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

.vscode/launch.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"type": "node",
6+
"request": "launch",
7+
"name": "Build",
8+
"skipFiles": ["<node_internals>/**"],
9+
"program": "${workspaceFolder}/build/build.ts",
10+
"outFiles": ["${workspaceFolder}/dist/**/*.js"]
11+
}
12+
]
13+
}

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
1313
// "declaration": true, /* Generates corresponding '.d.ts' file. */
1414
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
15-
// "sourceMap": true, /* Generates corresponding '.map' file. */
15+
"sourceMap": true, /* Generates corresponding '.map' file. */
1616
// "outFile": "./", /* Concatenate and emit output to single file. */
1717
"outDir": "./dist", /* Redirect output structure to the directory. */
1818
"rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */

0 commit comments

Comments
 (0)