Skip to content

Commit ddad255

Browse files
committed
a
02 a
1 parent 7316b2d commit ddad255

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"name": "@line/bot-sdk",
33
"version": "__LINE_BOT_SDK_NODEJS_VERSION__",
44
"description": "Node.js SDK for LINE Messaging API",
5+
"type": "module",
56
"engines": {
67
"node": ">=18"
78
},

tsconfig.json

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,23 @@
11
{
22
"compilerOptions": {
3-
"module": "commonjs",
4-
"target": "es2017",
3+
"module": "NodeNext",
4+
"moduleResolution": "NodeNext",
5+
"esModuleInterop": true,
6+
"target": "ES2018",
57
"noImplicitAny": true,
8+
"newLine": "LF",
9+
"sourceMap": true,
10+
"declarationMap": true,
611
"outDir": "dist",
712
"rootDirs": ["lib", "test"],
813
"declaration": true,
914
},
1015
"include": [
1116
"lib/**/*.ts",
12-
]
17+
],
18+
"exclude": [
19+
"node_modules",
20+
"dist",
21+
".git"
22+
],
1323
}

0 commit comments

Comments
 (0)