Hello,
every time I change one of the typescript files, it takes about 20 seconds to compile. I am currently using the following tsconfig.json configuration:
{
"compilerOptions": {
"target": "es2019",
"outDir": ".build",
"moduleResolution": "node",
"lib": ["es2019"],
"rootDir": "./",
"baseUrl": "./src",
},
"include": ["src/**/*.ts"],
"exclude": ["src/**/*.test.ts"]
}
Any reason why the compilation times are so slow?
Hello,
every time I change one of the typescript files, it takes about 20 seconds to compile. I am currently using the following tsconfig.json configuration:
Any reason why the compilation times are so slow?