Files
DefinitelyTyped/types/graceful-fs/tsconfig.json
Dimitri Benin 32f2b57713 [graceful-fs] upgrade to 4.1, improve typings, enable strict null checks and linting (#19257)
* [graceful-fs] upgrade to 4.1, improve typings, enable strict null checks and linting

* [graceful-fs] correctly re-export interfaces & types from fs, add docs
2017-08-23 13:18:50 -07:00

23 lines
455 B
JSON

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