Is there a way to prevent the automatic compilation of all files first when using the --watch option?

I would appreciate it if the tsc --watch option could be modified to only compile files when necessary, similar to how the make utility operates by checking time stamps of .js and .ts files.

While not a major issue, I am using TypeScript with a program that monitors changes in .js files (specifically the Azure Functions CLI host). Currently, running this program alongside tsc --watch results in unnecessary reloads of all files after compilation.

To work around this, I could potentially introduce a delay before running the functions host, but this solution feels like a temporary hack.

Thank you.

Answer №1

Can the compilation process be optimized to skip recompiling everything each time with the --watch option?

No, it is not possible using only the built-in functionality of typescript.

Additionally

You have the option to create custom code for implementing timestamp caching and checks.

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

An error has occurred: Type 'x' is not compatible with type 'x' (during Vercel deployment)

I encountered an issue during Vercel deployment which displays the following error message: - Type error: Type ' ({ params }: DashboardPageProps) = Promise' is not compatible with type 'FC<.DashboardPageProps>' Type 'Promise ...

Leveraging TypeScript Record for creating a limited set of object keys

Is it feasible to create a Record that maps selected keys from one object to another? I am attempting to map Google's libphonenumberCountryCode options to my custom formatting objects. Currently, I have: const countryOptions: Record<CountryCode, Co ...

Leveraging environment variables in template documents

Can you incorporate environment variables into template files successfully? Currently, I am experimenting with the following syntax: <img class="preview-image" src="{{environment.assets + item.image}}" /> However, this approach leads to the follow ...

Change (EU Time) date format of dd/mm/yyyy hh:mm:ss to a timestamp

Is there a way to convert time into a timestamp? I attempted to use .getTime(), but it seems to be switching the day and month. const date = new Date('01-02-2003 01:02:03'); console.log(date.getTime()); It appears to be converting to the US Tim ...

Ways to transfer an Object from a service to a component

I'm currently working on my website and trying to implement a cart feature where users can add items. To achieve this, I have created a service that contains the cart as an object called cart. The service has functions to add items to the cart and ret ...

Utilize Angular 2 to associate form context with ngTemplateOutlet

Currently, I am working on defining a Component that consists of a dynamic Form using ReactiveForms. The goal is to allow users to add or delete Controls within the form. These Controls can vary in structure and need to be defined externally to the Compone ...

Submitting the object in the correct format for the Firebase database

My goal is to structure the Firebase database in the following way: "thumbnails": { "72": "http://url.to.72px.thumbnail", "144": "http://url.to.144px.thumbnail" } However, I am struggling to correctly set the keys '72' and '144&apos ...

Angular 5: Utilizing distinct router-outlets in separate modules for optimized lazy loading experience

Having two modules with routing module files and router-outlets in their html, I aim to load components based on the current module. The file tree structure is as follows: project |-- module2 |-- -- profil |-- -- - profil.component.html |-- -- - profil. ...

Efficient access to variable-enumerated objects in TypeScript

Let's say I have the following basic interfaces in my project: interface X {}; interface Y {}; interface Data { x: X[]; y: Y[]; } And also this function: function fetchData<S extends keyof Data>(type: S): Data[S] { return data[type]; } ...

What is the procedure for transferring the inputted data from an HTML file to its corresponding TS file and subsequently to a different component file?

I have created two components, a login and a home-page. I am attempting to capture user input from the login template, pass it to the login component, and then display it on the home-page template using the home-page component. What is the best approach to ...

Exploring Typescript's conditional types and narrowing branches

When I use the following code snippet: type Identity <T extends string> = T; type MaybeString = string | undefined; type StringOrNever = MaybeString extends undefined ? never : Identity<MaybeString>; The compiler raises an error stating that ...

Typescript has a knack for uncovering non-existent errors

When I attempted to perform a save operation in MongoDB using Mongoose, the code I initially tried was not functioning as expected. Upon conducting a search online, I came across a solution that worked successfully; however, TypeScript continued to flag an ...

How can I use the *ngFor directive in Angular 2 or Ionic applications?

I am currently working on an Ionic Project. Upon button click, a request is processed and data is received as shown below: public login() { //this.showLoading() var test33; this.auth.login(this.registerCredentials).subscribe(data => { ...

What could be causing the primeng dialog to appear blank when conducting Jasmine tests on this Angular TypeScript application?

Having trouble testing a component due to rendering issues? Check out the code snippet below: import {ChangeDetectionStrategy, Component, EventEmitter, Input, Output} from '@angular/core'; @Component({ selector: 'app-help', cha ...

Testing the Child Component's EventEmitter Functionality

In my child component, there is an event emitter that sends a boolean value when the style changes in the parent component: export class ExampleComponent implements OnInit, OnChanges { @Output() statusEvent = new EventEmitter<boolean>(); getS ...

Here's a method to extract dates from today to the next 15 days and exclude weekends -Saturday and Sunday

Is there a way to generate an array of dates starting from today and spanning the next 15 days, excluding Saturdays and Sundays? For example, if today is 4/5/22, the desired array would look like ['4/5/22', '5/5/22', '6/5/22' ...

Testing the Snackbar function with Angular and TypeScript: Unit Testing

I've encountered an issue with a method called onDelete that utilizes a MatSnackBar which is injected in the constructor like so: constructor(private todoListService: TodolistService, private snackBar: MatSnackBar) { } onDelete(todoList: TodoList): v ...

Problem with Angular 2 Typings Paths in Typescript

Currently, I am in the process of learning how to create a Gulp build process with Angular 2 and Typescript. Following the Quick Start guide has allowed me to get everything up and running smoothly. However, I have decided to experiment with different fold ...

I'm encountering an issue when attempting to send a parameter to a function within a typescript code

Recently, I started using Typescript and encountered an issue with passing arguments to a function in Typescript. This particular function is triggered when rendering a form modal. However, I keep receiving two errors: "Argument of type 'Promise& ...

Troubleshooting: Angular 6 Renderer2 Issue with Generating Dynamic DOM Elements for SELECT-Option

Currently, I am attempting to dynamically create a select option using Renderer2. Unfortunately, I am facing difficulties in creating the <Select></Select> element, but I can confirm that the <options> are being successfully created. Due ...