UNPKG

generator-aspnetpostgresql

Version:

Yeoman generator for ASP.NET MVC Core apps with PostgreSQL support

14 lines (10 loc) 357 B
'use strict'; var util = require('util'); var ScriptBase = require('../script-base-basic.js'); var Generator = module.exports = function Generator() { ScriptBase.apply(this, arguments); }; util.inherits(Generator, ScriptBase); Generator.prototype.createItem = function() { this.generateStandardFile('tsconfig.json', 'tsconfig.json'); };