ts-simple-ast
Version:
TypeScript compiler wrapper for static analysis and code manipulation.
16 lines (15 loc) • 579 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var SettingsContainer_1 = require("./SettingsContainer");
/**
* Holds the compiler options.
*/
var CompilerOptionsContainer = /** @class */ (function (_super) {
tslib_1.__extends(CompilerOptionsContainer, _super);
function CompilerOptionsContainer() {
return _super.call(this, {}) || this;
}
return CompilerOptionsContainer;
}(SettingsContainer_1.SettingsContainer));
exports.CompilerOptionsContainer = CompilerOptionsContainer;