now using typings that resolve with modules
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
/// <reference path="./typings/index.d.ts" />
|
||||
import "typings-global";
|
||||
|
||||
import * as plugins from "./smartfile.plugins";
|
||||
import * as SmartfileChecks from "./smartfile.checks";
|
||||
|
@ -1,4 +1,4 @@
|
||||
/// <reference path="./typings/index.d.ts" />
|
||||
import "typings-global";
|
||||
import plugins = require("./smartfile.plugins");
|
||||
|
||||
/**
|
||||
|
@ -1,4 +1,4 @@
|
||||
/// <reference path="./typings/index.d.ts" />
|
||||
import "typings-global";
|
||||
|
||||
import plugins = require("./smartfile.plugins");
|
||||
import SmartfileChecks = require("./smartfile.checks");
|
||||
|
@ -1,4 +1,4 @@
|
||||
/// <reference path="./typings/index.d.ts" />
|
||||
import "typings-global";
|
||||
import plugins = require("./smartfile.plugins");
|
||||
|
||||
export let filetype = function(pathArg:string):string {
|
||||
|
@ -1,4 +1,4 @@
|
||||
/// <reference path="./typings/index.d.ts" />
|
||||
import "typings-global";
|
||||
|
||||
import plugins = require("./smartfile.plugins");
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/// <reference path="./typings/index.d.ts" />
|
||||
import "typings-global";
|
||||
|
||||
import plugins = require("./smartfile.plugins");
|
||||
import SmartfileGet = require("./smartfile.get");
|
||||
|
@ -1,4 +1,4 @@
|
||||
/// <reference path="./typings/index.d.ts" />
|
||||
import "typings-global";
|
||||
|
||||
import plugins = require("./smartfile.plugins");
|
||||
import SmartfileInterpreter = require("./smartfile.interpreter");
|
||||
|
@ -1,4 +1,4 @@
|
||||
/// <reference path="./typings/index.d.ts" />
|
||||
import "typings-global";
|
||||
export let beautylog = require("beautylog");
|
||||
export let fs = require("fs-extra");
|
||||
export let gulp = require("gulp");
|
||||
|
@ -1,4 +1,4 @@
|
||||
/// <reference path="./typings/index.d.ts" />
|
||||
import "typings-global";
|
||||
import plugins = require("./smartfile.plugins");
|
||||
import SmartfileInterpreter = require("./smartfile.interpreter");
|
||||
import SmartfileGet = require("./smartfile.get");
|
||||
|
@ -3,7 +3,6 @@
|
||||
"colors": "github:DefinitelyTyped/DefinitelyTyped/colors/colors.d.ts",
|
||||
"mocha": "github:Bartvds/tsd-deftools/typings/DefinitelyTyped/mocha/mocha.d.ts",
|
||||
"node": "registry:dt/node",
|
||||
"should": "registry:dt/should",
|
||||
"vinyl": "registry:dt/vinyl"
|
||||
"should": "registry:dt/should"
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user