DefinitelyTyped/deep-equal/tsconfig.json
Jay Anslow 023117be18 deep-equal accepts all types as arguments.
Previously only accepted defined objects. Also enable strictNullChecks.
2017-03-07 11:08:29 +00:00

23 lines
472 B
JSON

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