mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Turn off strict-export-declare-modifiers We are using declare, so this rule is just a pain * Update the IInvoice interface, fix some bugs * Remove linter test to make tsc work That kind of testing for error with linting, will break typescript compilation. And that seems counter intuitive given the nature of this project. * Run prettier on tests as well * Run prettier on tslint.json * Run prettier
17 lines
447 B
JSON
17 lines
447 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": ["es6", "esnext.asynciterable"],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": false,
|
|
"strictFunctionTypes": false,
|
|
"baseUrl": "../",
|
|
"typeRoots": ["../"],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": ["index.d.ts", "stripe-tests.ts"]
|
|
}
|