Skip to content
This repository has been archived by the owner on Dec 1, 2019. It is now read-only.

Commit

Permalink
fix: correcting references to typescriptService.d.ts
Browse files Browse the repository at this point in the history
In current version typescript, these should be path references. module references are case insensitive.
  • Loading branch information
DanielFallon committed Dec 22, 2016
1 parent 760e26b commit 8b5413d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions prod/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
"suppressImplicitAnyIndexErrors": true,
"lib": [ "es6", "dom" ]
},
"files": [
"../node_modules/typescript/lib/typescriptServices.d.ts"
],
"compileOnSave": false,
"include": [
"../src/**/*"
Expand Down
1 change: 0 additions & 1 deletion src/defines.d.ts

This file was deleted.

2 changes: 0 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/// <reference path="./defines.d.ts" />

import * as _ from 'lodash';
import * as path from 'path';

Expand Down
3 changes: 3 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
"suppressImplicitAnyIndexErrors": true,
"lib": [ "es6", "dom" ]
},
"files": [
"node_modules/typescript/lib/typescriptServices.d.ts"
],
"compileOnSave": false,
"include": [
"src/**/*"
Expand Down

0 comments on commit 8b5413d

Please sign in to comment.