-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
no need for root index file to be compiled
- Loading branch information
1 parent
9645e79
commit 8c57874
Showing
8 changed files
with
30 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from "./src/index"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,6 @@ | ||
"use strict"; | ||
function __export(m) { | ||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; | ||
} | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var json_convert_1 = require("./src/json2typescript/json-convert"); | ||
exports.JsonConvert = json_convert_1.JsonConvert; | ||
var json_convert_enums_1 = require("./src/json2typescript/json-convert-enums"); | ||
exports.ValueCheckingMode = json_convert_enums_1.ValueCheckingMode; | ||
exports.OperationMode = json_convert_enums_1.OperationMode; | ||
var json_convert_decorators_1 = require("./src/json2typescript/json-convert-decorators"); | ||
exports.JsonObject = json_convert_decorators_1.JsonObject; | ||
exports.JsonProperty = json_convert_decorators_1.JsonProperty; | ||
exports.JsonConverter = json_convert_decorators_1.JsonConverter; | ||
var any_1 = require("./src/json2typescript/any"); | ||
exports.Any = any_1.Any; | ||
//# sourceMappingURL=/Users/andreas/Documents/GIT/[email protected]/unibasel/json2typescript/index.js.map | ||
__export(require("./src/index")); |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
export { JsonConvert } from "./json2typescript/json-convert"; | ||
export { JsonCustomConvert } from "./json2typescript/json-custom-convert"; | ||
export { ValueCheckingMode, OperationMode } from "./json2typescript/json-convert-enums"; | ||
export { JsonObject, JsonProperty, JsonConverter } from "./json2typescript/json-convert-decorators"; | ||
export { Any } from "./json2typescript/any"; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
export { JsonConvert } from "./json2typescript/json-convert"; | ||
export { JsonCustomConvert } from "./json2typescript/json-custom-convert"; | ||
export { ValueCheckingMode, OperationMode } from "./json2typescript/json-convert-enums"; | ||
export { JsonObject, JsonProperty, JsonConverter } from "./json2typescript/json-convert-decorators"; | ||
export { Any } from "./json2typescript/any"; |