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

Commit 8b5413d

Browse files
committed
fix: correcting references to typescriptService.d.ts
In current version typescript, these should be path references. module references are case insensitive.
1 parent 760e26b commit 8b5413d

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

prod/tsconfig.json

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
"suppressImplicitAnyIndexErrors": true,
1212
"lib": [ "es6", "dom" ]
1313
},
14+
"files": [
15+
"../node_modules/typescript/lib/typescriptServices.d.ts"
16+
],
1417
"compileOnSave": false,
1518
"include": [
1619
"../src/**/*"

src/defines.d.ts

-1
This file was deleted.

src/index.ts

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/// <reference path="./defines.d.ts" />
2-
31
import * as _ from 'lodash';
42
import * as path from 'path';
53

tsconfig.json

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
"suppressImplicitAnyIndexErrors": true,
1212
"lib": [ "es6", "dom" ]
1313
},
14+
"files": [
15+
"node_modules/typescript/lib/typescriptServices.d.ts"
16+
],
1417
"compileOnSave": false,
1518
"include": [
1619
"src/**/*"

0 commit comments

Comments
 (0)