Skip to content

Commit ef2caec

Browse files
committed
build(tsconfig.ts): sort and categorize compilerOptions
1 parent 1d58d96 commit ef2caec

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

tsconfig.json

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,24 @@
11
{
22
"compilerOptions": {
3-
"target": "es6",
3+
/* Type checking */
4+
"strict": true,
5+
6+
/* Modules */
47
"module": "esnext",
58
"moduleResolution": "node",
6-
"sourceMap": true,
7-
"outDir": "./lib",
9+
"rootDir": "./src",
10+
11+
/* Language and Environment */
12+
"target": "es6",
13+
14+
/* Emit */
815
"declaration": true,
916
"declarationMap": true,
10-
"rootDir": "./src",
1117
"importHelpers": true,
12-
"strict": true,
18+
"sourceMap": true,
19+
"outDir": "./lib",
20+
21+
/* Interop Constraints */
1322
"esModuleInterop": true
1423
},
1524
"exclude": [

0 commit comments

Comments
 (0)