DefinitelyTyped/types/node-persist/tsconfig.json
Samuel Elliott 57b69d5690 [node-persist] Update for v3.0 (#39949)
* [node-persist] Update for v3.0

* [node-persist] Fix required forEach callback

* [node-persist] Add default instance

* [node-persist] Lint
2019-11-05 16:06:16 -08:00

25 lines
512 B
JSON

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