Skip to content

Commit 51fdc30

Browse files
committed
fixing errors
1 parent ee1240a commit 51fdc30

1 file changed

Lines changed: 14 additions & 2 deletions

File tree

tsconfig.json

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,19 @@
22
"compilerOptions": {
33
"resolveJsonModule": true,
44
"esModuleInterop": true,
5-
"noEmit": true
5+
"noEmit": true,
6+
7+
"target": "ES6",
8+
"module": "ESNext",
9+
"moduleResolution": "node",
10+
"strict": true,
11+
"allowSyntheticDefaultImports": true,
12+
"forceConsistentCasingInFileNames": true,
13+
"skipLibCheck": true,
14+
15+
"jsx": "react-jsx",
16+
"lib": ["ESNext", "DOM"],
17+
"types": ["node", "react", "react-dom"]
618
},
7-
"include": ["scripts"]
19+
"include": ["scripts", "packages/**/*"]
820
}

0 commit comments

Comments
 (0)