Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit d116a17

Browse files
authored
Merge pull request #113 from dotBits/master
typings config refactor needed by latest definition manager v >=1.0.0
2 parents af2b2ff + 8c1c240 commit d116a17

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

react-flux-babel-karma/src/tsconfig.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"compileOnSave": false,
33
"filesGlob": [
4-
"../typings/browser/**/*.*.ts",
5-
"!../typings/browser/ambient/jasmine/index.d.ts",
6-
"!../typings/browser/ambient/react-addons-test-utils/index.d.ts",
4+
"../typings/globals/**/*.*.ts",
5+
"!../typings/globals/jasmine/index.d.ts",
6+
"!../typings/globals/react-addons-test-utils/index.d.ts",
77
"**/*.{ts,tsx}"
88
],
99
"compilerOptions": {
@@ -15,10 +15,10 @@
1515
"sourceMap": true
1616
},
1717
"files": [
18-
"../typings/browser/ambient/react/index.d.ts",
19-
"../typings/browser/ambient/react-dom/index.d.ts",
20-
"../typings/browser/ambient/flux/index.d.ts",
21-
"../typings/browser/ambient/node/index.d.ts",
18+
"../typings/globals/react/index.d.ts",
19+
"../typings/globals/react-dom/index.d.ts",
20+
"../typings/globals/flux/index.d.ts",
21+
"../typings/globals/node/index.d.ts",
2222
"actions/GreetingActions.ts",
2323
"components/App.tsx",
2424
"components/Greeting.tsx",

react-flux-babel-karma/test/tsconfig.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compileOnSave": false,
33
"filesGlob": [
44
"**/*.{ts,tsx}",
5-
"../typings/browser/**/*.*.ts"
5+
"../typings/globals/**/*.*.ts"
66
],
77
"compilerOptions": {
88
"jsx": "preserve",
@@ -13,12 +13,12 @@
1313
"sourceMap": true
1414
},
1515
"files": [
16-
"../typings/browser/ambient/react/index.d.ts",
17-
"../typings/browser/ambient/react-dom/index.d.ts",
18-
"../typings/browser/ambient/react-addons-test-utils/index.d.ts",
19-
"../typings/browser/ambient/flux/index.d.ts",
20-
"../typings/browser/ambient/jasmine/index.d.ts",
21-
"../typings/browser/ambient/node/index.d.ts",
16+
"../typings/globals/react/index.d.ts",
17+
"../typings/globals/react-dom/index.d.ts",
18+
"../typings/globals/react-addons-test-utils/index.d.ts",
19+
"../typings/globals/flux/index.d.ts",
20+
"../typings/globals/jasmine/index.d.ts",
21+
"../typings/globals/node/index.d.ts",
2222
"components/App.tests.tsx",
2323
"components/Greeting.tests.tsx",
2424
"components/WhoToGreet.tests.tsx",

react-flux-babel-karma/typings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "es6-babel-react-flux-karma",
33
"version": false,
4-
"ambientDependencies": {
4+
"globalDependencies": {
55
"jasmine": "github:DefinitelyTyped/DefinitelyTyped/jasmine/jasmine.d.ts#bcd5761826eb567876c197ccc6a87c4d05731054",
66
"flux": "github:DefinitelyTyped/DefinitelyTyped/flux/flux.d.ts#bcd5761826eb567876c197ccc6a87c4d05731054",
77
"node": "github:DefinitelyTyped/DefinitelyTyped/node/node.d.ts#bcd5761826eb567876c197ccc6a87c4d05731054",

0 commit comments

Comments
 (0)