Skip to content

Commit d243b42

Browse files
authored
Update tsconfig.json
1 parent d83b2c3 commit d243b42

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,17 +1,18 @@
11
{
22
"compilerOptions": {
3-
"declaration": true,
4-
"declarationDir": "build",
5-
"module": "esnext",
63
"target": "es5",
7-
"lib": ["es6", "dom", "es2016", "es2017"],
8-
"sourceMap": true,
9-
"jsx": "react",
4+
"module": "esnext",
5+
"lib": ["dom", "esnext"],
6+
"jsx": "react-jsx",
7+
"declaration": true,
108
"moduleResolution": "node",
11-
"allowSyntheticDefaultImports": true,
12-
"esModuleInterop": true
9+
"strict": true,
10+
"esModuleInterop": true,
11+
"skipLibCheck": true,
12+
"forceConsistentCasingInFileNames": true,
13+
"outDir": "build",
14+
"types": ["jest", "node"]
1315
},
14-
"include": ["src/**/*"],
15-
"exclude": ["node_modules", "build"],
16-
"baseUrl": "./",
17-
}
16+
"include": ["src", "tests"],
17+
"exclude": ["node_modules", "build"]
18+
}

0 commit comments

Comments
 (0)