Generate d.ts files
This makes it more clear what we are exporting to others. We should be careful on what we export publicly for consumption and which ones are exported to facilitate testing.
This commit is contained in:
Родитель
4182744c4f
Коммит
64851ba6d4
|
@ -0,0 +1 @@
|
|||
lerna-debug.json
|
|
@ -11,7 +11,7 @@ const expandHomeDir = require('expand-home-dir');
|
|||
const isWindows = process.platform.indexOf('win') === 0;
|
||||
const JAVAC_FILENAME = 'javac' + (isWindows ? '.exe' : '');
|
||||
|
||||
interface RequirementsData {
|
||||
export interface RequirementsData {
|
||||
java_home: string;
|
||||
}
|
||||
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
"es6"
|
||||
],
|
||||
"sourceMap": true,
|
||||
"declaration": true,
|
||||
"moduleResolution": "node",
|
||||
"noImplicitAny": true,
|
||||
"rootDir": ".",
|
||||
|
@ -15,6 +16,7 @@
|
|||
},
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
".vscode-test"
|
||||
".vscode-test",
|
||||
"dist"
|
||||
]
|
||||
}
|
|
@ -6,6 +6,7 @@
|
|||
"es6"
|
||||
],
|
||||
"sourceMap": true,
|
||||
"declaration": true,
|
||||
"moduleResolution": "node",
|
||||
"noImplicitAny": true,
|
||||
"rootDir": ".",
|
||||
|
@ -15,6 +16,7 @@
|
|||
},
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
".vscode-test"
|
||||
".vscode-test",
|
||||
"dist"
|
||||
]
|
||||
}
|
Загрузка…
Ссылка в новой задаче