Skip to content
This repository has been archived by the owner on Mar 20, 2024. It is now read-only.

Commit

Permalink
refactor: cleanup directory structure
Browse files Browse the repository at this point in the history
  • Loading branch information
filipesilva committed Jul 6, 2017
1 parent 53b3be4 commit 81b2f8a
Show file tree
Hide file tree
Showing 73 changed files with 100 additions and 88 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -124,7 +124,7 @@ module.exports = {
rules: [
{
test: /\.js$/,
loader: 'ngo/dist/ngo-webpack-loader'
loader: 'ngo/dist/ngo/webpack-loader'
options: {
sourceMap: false
}
Expand Down
1 change: 0 additions & 1 deletion dist/class-fold.js.map

This file was deleted.

@@ -1,7 +1,10 @@
import * as ts from 'typescript';
import { NgoOptions } from './ngo';
export interface TransformJavascriptOptions extends NgoOptions {
export interface TransformJavascriptOptions {
content: string;
inputFilePath?: string;
outputFilePath?: string;
emitSourceMap?: boolean;
strict?: boolean;
getTransforms: Array<(program: ts.Program) => ts.TransformerFactory<ts.SourceFile>>;
}
export declare const transformJavascript: (options: TransformJavascriptOptions) => {
Expand Down
File renamed without changes.

0 comments on commit 81b2f8a

Please sign in to comment.