grunt-local-typescript
v1.0.0
Published
Compile ts files with local installed TypeScript
Downloads
2
Readme
grunt-local-typescript
Compile ts files with local installed TypeScript
You can pass Compiler Options to TypeScript (TSC) CLI https://www.typescriptlang.org/docs/handbook/compiler-options.html
grunt.initConfig({
local_typescript: {
options: {
typescript: 'node_modules/.bin/tsc',
},
dev: {
options: {
'project': 'path/to/tscondig.json'
}
}
}
},
});