UNPKG

foalts2-cli

Version:

CLI tool for FoalTS

16 lines (15 loc) 537 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.createVSCodeConfig = void 0; // FoalTS const file_system_1 = require("../../file-system"); function createVSCodeConfig() { new file_system_1.FileSystem() // TODO: test this line .cdProjectRootDir() .ensureDir('.vscode') .cd('.vscode') .copy('vscode-config/launch.json', 'launch.json') .copy('vscode-config/tasks.json', 'tasks.json'); } exports.createVSCodeConfig = createVSCodeConfig;