DefinitelyTyped/types/shelljs/tsconfig.json
Nathan Shively-Sanders 11ec8b0e41 Add shelljs/make
The make utility script:
1. Adds an object named target to the global namespace.
2. Dumps the contents of shelljs into the global namespace.
2018-12-06 10:41:09 -08:00

25 lines
510 B
JSON

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