(First of all, I don't know that much about Javascript, Typescript, and basically entire node.js. I may be wrong)
I checked the source of parse.ts, boolean was specially handled and be converted from string to actual boolean type here.
Option noResolvePaths takes an array as an argument, but I didn't find any code that converts the input string to array - which means there's (probably) no way to set noResolvePaths with cli w/out tsconfig.json.
I've also tried:
"a","b","c"
["a","b","c"]
["a", "b", "c"]
TSC (Typescript's compiling cli) will be converting the first one I mentioned above ("a","b","c" / a,b,c) to array, but tstl doesn't
(First of all, I don't know that much about Javascript, Typescript, and basically entire node.js. I may be wrong)
I checked the source of
parse.ts,booleanwas specially handled and be converted from string to actual boolean type here.Option
noResolvePathstakes an array as an argument, but I didn't find any code that converts the input string to array - which means there's (probably) no way to setnoResolvePathswith cli w/outtsconfig.json.I've also tried:
"a","b","c"["a","b","c"]["a", "b", "c"]TSC (Typescript's compiling cli) will be converting the first one I mentioned above (
"a","b","c"/a,b,c) to array, but tstl doesn't