Skip to content

Commit

Permalink
fix compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed May 28, 2019
1 parent c596afe commit 2f74ebf
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 25 deletions.
2 changes: 1 addition & 1 deletion src/model/Column.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export declare function summaryRendererChanged(previous: string, current: string
export declare function visibilityChanged(previous: boolean, current: boolean): void;

export interface IColumnConstructor {
new(id: string, desc: Readonly<IColumnDesc & {[key: string]: any}>, factory: ITypeFactory): Column;
new(id: string, desc: Readonly<IColumnDesc & any>, factory: ITypeFactory): Column;
}

/**
Expand Down
11 changes: 0 additions & 11 deletions tsconfig.dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,6 @@
"target": "es6",
"outDir": "build"
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"tests/**/*.ts",
"tests/**/*.tsx",
"tsd.d.ts"
],
"exclude": [
"src/**/*.d.ts",
"tests/**/*.d.ts",
],
"typedocOptions": {
"name": "LineUpJS",
"mode": "modules",
Expand Down
5 changes: 4 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,12 @@
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"tests/**/*.ts",
"tests/**/*.tsx",
"tsd.d.ts"
],
"exclude": [
"src/**/*.d.ts"
"src/**/*.d.ts",
"tests/**/*.d.ts",
]
}
13 changes: 1 addition & 12 deletions tsconfig.test.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,5 @@
"module": "commonjs",
"target": "es5",
"outDir": "build"
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"tests/**/*.ts",
"tests/**/*.tsx",
"tsd.d.ts"
],
"exclude": [
"src/**/*.d.ts",
"tests/**/*.d.ts",
]
}
}

0 comments on commit 2f74ebf

Please sign in to comment.