Skip to content

Commit 6057202

Browse files
Ailruntkh44
authored andcommitted
Fix tsconfig for emotion-theming (#714)
**What**: tsconfig.json for emotion-theming package **Why**: It does not work well with dtslint **How**: Fix options in tsconfig.json **Checklist**: - [N/A] Documentation - [N/A] Tests - [x] Code complete Resolves #711.
1 parent 21c3308 commit 6057202

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

packages/emotion-theming/types/tsconfig.json

+14-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,23 @@
11
{
22
"compilerOptions": {
3-
"target": "es5",
4-
"module": "es2015",
5-
"declaration": true,
6-
"strict": true,
7-
"moduleResolution": "node",
3+
"baseUrl": "../",
4+
"forceConsistentCasingInFileNames": true,
85
"jsx": "react",
9-
"lib": ["es6"],
6+
"lib": [
7+
"es6"
8+
],
9+
"module": "commonjs",
10+
"noEmit": true,
1011
"noImplicitAny": true,
1112
"noImplicitThis": true,
13+
"strict": true,
1214
"strictNullChecks": true,
13-
"strictFunctionTypes": true
15+
"strictFunctionTypes": true,
16+
"target": "es5",
17+
"typeRoots": [
18+
"../"
19+
],
20+
"types": []
1421
},
1522
"include": [
1623
"./*.ts",

0 commit comments

Comments
 (0)