From 668b2fb288f9a3b7aa33ae0b009ba314c9912fc9 Mon Sep 17 00:00:00 2001 From: JeroenVinke Date: Wed, 11 Oct 2017 13:21:17 +0200 Subject: [PATCH] fix(webpack): add tslint config closes https://github.com/aurelia/cli/issues/770 --- lib/commands/new/buildsystems/webpack/transpilers/typescript.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/commands/new/buildsystems/webpack/transpilers/typescript.js b/lib/commands/new/buildsystems/webpack/transpilers/typescript.js index 4fb325dff..c1a813632 100644 --- a/lib/commands/new/buildsystems/webpack/transpilers/typescript.js +++ b/lib/commands/new/buildsystems/webpack/transpilers/typescript.js @@ -3,6 +3,7 @@ const ProjectItem = require('../../../../../project-item').ProjectItem; module.exports = function(project) { project.addToContent( + ProjectItem.resource('tslint.json', 'content/tslint.json'), ProjectItem.resource('tsconfig.json', 'content/tsconfig.template.json') .asTemplate(project.model), ProjectItem.directory('custom_typings')