Files
DefinitelyTyped/deep-assign/tsconfig.json
Ionut Costica e1b8d6829c add deep-assign (#12353)
* add deep-assign

Add type definitions for https://github.com/sindresorhus/deep-assign

* fix(tsconfig): Set strictNullChecks to true
2016-11-02 23:04:21 +09:00

20 lines
340 B
JSON

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