//i hate typescript declare module NodeJS { interface Global { COMPTIME_STR: string COMPTIME_NUM: number } } declare const COMPTIME_STR declare const COMPTIME_NUM console.log("Hello, world!") //#IF IS_TRUE console.log("#IF works") //#END //#IF IS_FALSE console.log("#IF does not work (ignore the last one if this shows up)") //#END //#IfNoT IS_FALSE console.log("#IFNOT works") //#END //#ifnot IS_TRUE console.log("#IFNOT does not work (disregard prior)") //#end console.log(COMPTIME_STR) console.log(COMPTIME_NUM) let test2: string = "Hello, Typescript!" console.log(test2)