Floris Bernard

Results 14 comments of Floris Bernard

I have the same on `5.0.0-0`: ``` [at-loader] TS6053: File 'C:/lib.dom.d.ts' not found. [at-loader] TS6053: File 'C:/lib.dom.iterable.d.ts' not found. [at-loader] TS6053: File 'C:/lib.es2015.d.ts' not found. [at-loader] TS6053: File 'C:/lib.scripthost.d.ts' not...

@lucho78 Unfortunately removing the `lib` config is not always a solution. It can only be done if you use the default set of libs. For most of my projects I...

@Delagen I'm not entirely sure what you mean. The default `lib` setting does differ per target. See `--lib` option in the [compiler options documentation](https://www.typescriptlang.org/docs/handbook/compiler-options.html) Again, I'm not suggesting that everyone...

In webpack as a workaround you may want to try loading clmtrackr as an UMD module. Instead of importing from `clmtrackr`, import from `clmtrackr/build/clmtrackr`. Also add to your webpack config:...

@hjeti All assets should still be versioned either by a version number folder or hash versioning. To clarify, this is my suggestion: - generally speaking, all assets go through webpack....

@hjeti I have this ready now but it's waiting for #82. Can you merge it so I can create a new PR? All outstanding comments have been resolved.

@hjeti I will take care of this if you like. Do you happen to know why we have `node_modules` in the "include" array of `tsconfig.json`? This will most likely slow...

Yeah I think what I said about the entry point might be true for the `files` array rather than `include`. Regardless I agree that we should keep `"src/**/*.ts"`. In my...

I ran into the following issue on a different project: s-panferov/awesome-typescript-loader#528 Will need to investigate either adding fork-ts-checker plugin like the comments suggest, or maybe look into using ts-loader instead

I think I'll have to try both ts-loader, awesome-typescript-loader and babel-typescript in 1 or more projects to see which is fastest. I'll do some benchmarks and will let you know....