Skip to content
This repository was archived by the owner on Jun 5, 2019. It is now read-only.

Commit 24ff61f

Browse files
committed
Turns off strict because I lose.
1 parent 973a06f commit 24ff61f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"jsx": "react",
77
"experimentalDecorators": true,
88
"allowSyntheticDefaultImports": false,
9-
"strict": true,
9+
"strict": false,
1010
"noUnusedLocals": true
1111
},
1212
"include": [

tsconfig.test.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99
"strict": false,
1010
"noUnusedLocals": true,
1111
"outDir": "out-test",
12-
"sourceRoot": "src",
1312
"inlineSourceMap": true,
1413
"typeRoots": [
15-
"node_modules/@types"
14+
"node_modules/@types",
15+
"typings"
1616
]
1717
},
1818
"include": [
1919
"src"
2020
],
2121
"exclude": [
22-
"node_modules/**/*"
22+
"node_modules"
2323
]
2424
}

0 commit comments

Comments
 (0)