Skip to content

Commit 1a363c5

Browse files
committedJul 1, 2016
update to react@0.15.2, tsconfig with rootDirs
1 parent a95881e commit 1a363c5

File tree

2 files changed

+14
-11
lines changed

2 files changed

+14
-11
lines changed
 

‎package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
"dependencies": {
2424
"atom-plugin-command-line": "1.0.2",
2525
"coderoad-cli": "0.7.1",
26-
"core-coderoad": "0.4.0",
26+
"core-coderoad": "0.5.0",
2727
"lodash.debounce": "4.0.6",
2828
"material-ui": "0.15.1",
2929
"node-file-exists": "1.1.0",
30-
"react": "15.1.0",
31-
"react-dom": "15.1.0",
30+
"react": "15.2.0",
31+
"react-dom": "15.2.0",
3232
"react-redux": "4.4.5",
3333
"react-tap-event-plugin": "1.0.0",
3434
"redux": "3.5.2",

‎tsconfig.json

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,19 @@
1111
"jsx": "react",
1212
"experimentalDecorators": true,
1313
"emitDecoratorMetadata": true,
14-
"outDir": "lib"
14+
"outDir": "lib",
15+
"rootDirs": [
16+
"src"
17+
]
1518
},
1619
"filesGlob": [
17-
"src/typings/**/*.d.ts",
18-
"src/**/*.ts",
19-
"src/**/*.tsx",
20-
"!src/**/*.spec.ts",
21-
"!src/**/*.spec.tsx"
20+
"typings/**/*.d.ts",
21+
"**/*.ts",
22+
"**/*.tsx",
23+
"!**/*.spec.ts",
24+
"!**/*.spec.tsx"
2225
],
2326
"files": [
24-
"src/typings/builder.d.ts",
25-
"src/typings/typings.d.ts",
2627
"src/actions.ts",
2728
"src/components/Config/handleDeps.ts",
2829
"src/components/Config/validate.ts",
@@ -77,6 +78,8 @@
7778
"src/services/twoDigitify.ts",
7879
"src/store.ts",
7980
"src/subscriptions.ts",
81+
"src/typings/builder.d.ts",
82+
"src/typings/typings.d.ts",
8083
"src/components/AppMenu/CloseWindow.tsx",
8184
"src/components/AppMenu/index.tsx",
8285
"src/components/AppMenu/menuIconRight.tsx",

0 commit comments

Comments
 (0)
Please sign in to comment.