TypeScript/tests/cases/user/bcryptjs/tsconfig.json
Nathan Shively-Sanders 5d23cb49d0
Exclude generated files from user tests (#23371)
* Exclude generated files from user tests

The top 3 offenders, at least: bcryptjs, bluebird and lodash.

* Clean url-search-params too

Only need to build the commonjs original, not the browserified ones.
2018-04-12 10:25:53 -07:00

19 lines
434 B
JSON

{
"compilerOptions": {
"noImplicitAny": false,
"noImplicitThis": false,
"maxNodeModuleJsDepth": 0,
"strict": true,
"noEmit": true,
"allowJs": true,
"checkJs": true,
"types": ["node"],
"lib": ["esnext", "dom"],
},
"include": [
"node_modules/bcryptjs/scripts",
"node_modules/bcryptjs/src",
"node_modules/bcryptjs/tests"
]
}