Skip to content

Commit 6a51b98

Browse files
committed
fix(build): remove comments from tsconfig.json
Signed-off-by: Phil Adams <[email protected]>
1 parent 5bb3a1c commit 6a51b98

File tree

1 file changed

+9
-16
lines changed

1 file changed

+9
-16
lines changed

tsconfig.json

Lines changed: 9 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,20 @@
11
{
22
"compilerOptions": {
3-
/* Basic Options */
4-
"target": "es5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', or 'ESNEXT'. */
5-
"module": "commonjs", /* Specify module code generation: 'none', commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
3+
"target": "es5",
4+
"module": "commonjs",
65
"lib": [
76
"es5",
87
"es2015",
98
"dom",
109
"scripthost"
1110
],
12-
13-
/* Build source files into a folder called `dist` to maintain clean directories, free of ts-generated files */
1411
"outDir": "./dist",
15-
16-
/* Specify library files to be included in the compilation: */
17-
"declaration": true, /* Generates corresponding '.d.ts' file. */
18-
"sourceMap": true, /* Generates corresponding '.map' file. */
19-
20-
/* Strict Type-Checking Options */
21-
"alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
22-
23-
/* Module Resolution Options */
24-
"moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
25-
"types": ["node"], /* Type declaration files to be included in compilation. */
12+
"declaration": true,
13+
"sourceMap": true,
14+
"alwaysStrict": true,
15+
"moduleResolution": "node",
16+
"types": [
17+
"node"
18+
]
2619
}
2720
}

0 commit comments

Comments
 (0)