mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Remove export as namespace This particular file was causing me issues with the new typings-2.0 since it doesn't support exporting namespaces from within modules. * Updating Q to have optional resolves, adding tslint file, fixing tests compilation * forgot to merge in latest from upstream, replicated the changes into new folder structure * adding tslint to q * latest changes to please tslint, but is currently breaking the .all tests - still need to fix * fixing the reason why the tests was failing, a problem with Typescript trying to decipher the signature of arrays within function arguments that are unionized, updating tslint to ignore those issues * whoops, messed up header which failed linting
24 lines
465 B
JSON
24 lines
465 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6",
|
|
"dom"
|
|
],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": false,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"q-tests.ts"
|
|
]
|
|
}
|