Skip to content

Commit

Permalink
Fix tsconfig for emotion-theming (#714)
Browse files Browse the repository at this point in the history
**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.
  • Loading branch information
Ailrun authored and tkh44 committed Jun 13, 2018
1 parent 21c3308 commit 6057202
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions packages/emotion-theming/types/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,23 @@
{
"compilerOptions": {
"target": "es5",
"module": "es2015",
"declaration": true,
"strict": true,
"moduleResolution": "node",
"baseUrl": "../",
"forceConsistentCasingInFileNames": true,
"jsx": "react",
"lib": ["es6"],
"lib": [
"es6"
],
"module": "commonjs",
"noEmit": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strict": true,
"strictNullChecks": true,
"strictFunctionTypes": true
"strictFunctionTypes": true,
"target": "es5",
"typeRoots": [
"../"
],
"types": []
},
"include": [
"./*.ts",
Expand Down

0 comments on commit 6057202

Please sign in to comment.