You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Include your gulpfile, or only the related task (with ts.createProject).
gulp.task('ts',function(){returngulp.src('src/**/*.ts').pipe(ts({noImplicitAny: true,outFile: 'output.js'})).pipe(gulp.dest('built/local'));});```**tsconfig.json***Include your tsconfig, if related to this issue.*```json{"compilerOptions": {"module": "commonjs","moduleResolution": "node","target": "ES2019","lib": ["ES2019"],"strict": true,"noEmitOnError": true,"declaration": true},"include": ["./src"]}
Expected behavior:
successfully compiled typescript
Actual behavior:
Your gulpfile:
Include your gulpfile, or only the related task (with
ts.createProject
).Minimal reproducible example
Here is my example: https://github.com/TinsFox/proj
Thanks for answering my question.
The text was updated successfully, but these errors were encountered: