When compiling with the tsc command everything is fine, I get the js and d.ts files.
When running awesome-typescript-loader I get no error, but the Node class (being used in that type) is not being compiled nor do I get a d.ts file.
Note that this is fixed after deleting the import {Predicate} from '../Predicates'; line.
This does not output any error to the console, the Node.ts file is just being omitted from the list of compiled files...
This is really weird and again using the typescript compiler directly via the tsc command works.
Hello, I have some weird issue, I have the following file:
Another file imports this file.
When compiling with the
tsc
command everything is fine, I get the js and d.ts files. When running awesome-typescript-loader I get no error, but the Node class (being used in that type) is not being compiled nor do I get a d.ts file.Note that this is fixed after deleting the
import {Predicate} from '../Predicates';
line.This does not output any error to the console, the Node.ts file is just being omitted from the list of compiled files...
This is really weird and again using the typescript compiler directly via the tsc command works.