mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Add a definition of atlassian-crowd-client * [atlassian-crowd-client] Fix a wrong definition. * Add `"strictFunctionTypes": true` * [atlassian-crowd-client] Fix a compile error. * [atlassian-crowd-client] Use `export =` instead of `export default`. * Use `export =` instead of `export default` * Use `import = require`
25 lines
522 B
JSON
25 lines
522 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6",
|
|
"dom"
|
|
],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"atlassian-crowd-client-tests.ts"
|
|
]
|
|
}
|