Skip to content

Commit 86e1f23

Browse files
committed
fix(tsconfig): generate lib/index.d.ts
1 parent 8f49db1 commit 86e1f23

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

tsconfig.json

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
{
2-
"compilerOptions": {
3-
"allowJs": false,
4-
"module": "commonjs",
5-
"outDir": "./lib",
6-
"pretty": true,
7-
"sourceMap": true,
8-
"strict": true,
9-
"target": "es2015"
10-
},
11-
"include": [
12-
"src/**/*"
13-
]
2+
"compilerOptions": {
3+
"allowJs": false,
4+
"module": "commonjs",
5+
"outDir": "./lib",
6+
"pretty": true,
7+
"sourceMap": true,
8+
"strict": true,
9+
"target": "es2015",
10+
"declaration": true
11+
},
12+
"include": [
13+
"src/**/*"
14+
]
1415
}

0 commit comments

Comments
 (0)