Closed
Description
This is from my “crawl node_modules for javascript modules” branch at #6928
My tsconfig.json is as below:
{
"compilerOptions": {
"allowJs": true,
"maxNodeSearchJsDepth": 2,
"outDir": "./out",
"module": "commonjs"
},
"exclude": [
"node_modules", "out"
]
}
Run “npm install gulp” in the root. Have a “test.js” that is as the below.
var g = require('gulp');
g.src()
From the command line run “tsc” (obviously using the ‘\built\local’ from that branch)… CRASH!!