DefinitelyTyped/types/cross-spawn/tsconfig.json
ExE Boss b755355a2e fix(cross‑spawn): Add missing spawn function type definitions (#38481)
* fix(cross‑spawn): Add missing `spawn(…)` function type definitions

* refactor: Apply Prettier style
2019-10-04 08:42:00 -07:00

24 lines
375 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es2015"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"cross-spawn-tests.ts"
]
}