Skip to content

Commit 0077afe

Browse files
committed
fix tsconfig
1 parent d7b1307 commit 0077afe

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

tsconfig.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
11
{
22
"compilerOptions": {
3-
"experimentalDecorators": true
3+
"target": "es2020",
4+
"module": "commonjs",
5+
"esModuleInterop": true,
6+
"moduleResolution": "node",
7+
"jsx": "react",
8+
"sourceMap": false,
9+
"composite": true,
10+
"strictBindCallApply": true,
11+
"resolveJsonModule": true,
12+
"experimentalDecorators": true,
13+
"incremental": true,
414
},
5-
"files": [
15+
"include": [
616
"packages/**/*.ts"
717
]
818
}

0 commit comments

Comments
 (0)