Skip to content

Commit 441a3c5

Browse files
committed
tsconfig: generate ES6 and compile src into dist
1 parent fea0e8b commit 441a3c5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tsconfig.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
22
"compilerOptions": {
3-
"module": "commonjs",
4-
"target": "ES3",
3+
"module": "ES6",
4+
"target": "ES6",
55
"strict": true,
66
"noUnusedLocals": true,
7-
"noUnusedParameters": true,
87
"removeComments": true,
98
"preserveConstEnums": true,
109
"sourceMap": true,
1110
"allowUnreachableCode": false,
12-
"declaration": true
11+
"declaration": true,
12+
"outDir": "dist"
1313
},
14-
"files": [
15-
"index.ts"
14+
"include": [
15+
"src/*.ts"
1616
]
1717
}

0 commit comments

Comments
 (0)