Make tsc command use full path to tsconfig

master
Garrett Mills 2 years ago
parent e4143e0b8e
commit 24d615c2a0

@ -1,6 +1,6 @@
{
"name": "@extollo/cc",
"version": "0.3.0",
"version": "0.4.0",
"description": "Early-phase compiler for Extollo projects",
"main": "lib/index.js",
"types": "lib/index.d.ts",

@ -1,4 +1,5 @@
import * as childProcess from 'child_process'
import * as path from 'path'
import {Phase} from './Phase'
import {ExtolloCompileConfig} from '../types'
import {Logger} from '../Logger'
@ -15,7 +16,8 @@ export class CompilePhase extends Phase {
public run(): Promise<void> {
Logger.verb('tsc', 'transpile sources')
const tsc = childProcess.spawn('tsc', ['-p', this.tsconfigPath])
Logger.verb('++', `tsc -p ${path.resolve(this.tsconfigPath)}`)
const tsc = childProcess.spawn('tsc', ['-p', path.resolve(this.tsconfigPath)])
tsc.stdout.on('data', (output: Buffer) => {
Logger.info('tsc', output.toString('utf-8'))

Loading…
Cancel
Save