improvement(ts): transpileOnly when using nuxt-ts start (#4906)

This commit is contained in:
Kevin Marrec 2019-02-01 14:05:03 +01:00 committed by Pooya Parsa
parent 0223e56dd4
commit d7b57e0d97
2 changed files with 4 additions and 2 deletions

View File

@ -47,6 +47,7 @@ export async function setup(tsConfigPath) {
project: tsConfigPath,
compilerOptions: {
module: 'commonjs'
}
},
transpileOnly: process.argv[2] === 'start'
})
}

View File

@ -38,7 +38,8 @@ describe('typescript setup', () => {
project: tsConfigPath,
compilerOptions: {
module: 'commonjs'
}
},
transpileOnly: false
})
})