mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-03-01 04:02:55 +00:00
* Repo has a support for chai-fs. My pull request doesn't covers this combination: expect(path).to.be.a.file(msg).with.contents.that.match(/xyz/, msg); * Remove blank line, downgrade typescript version to 2.0.0 and strictNullChecks are equal to true. * Fix build issue with typescript verion. * Remove "v" from version. * Typescript version should be: 2.2 * fix lint issues
24 lines
488 B
JSON
24 lines
488 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"chai-fs-tests.ts"
|
|
]
|
|
}
|