mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Start creation of typings for react-bootstrap-typeahead * Add tslint * Add tsconfig.json * Add test file * Fix trailing comma * Fix wrong filename * Set min TypeScript Version to 2.3 * commonjs only?? * If strictFunctionTypes not present it doesn't fallback on a default value * No consecutive blank lines * Fix lint errors * Fix last lint errors * Remove default export * Last update
26 lines
550 B
JSON
26 lines
550 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6",
|
|
"dom"
|
|
],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"baseUrl": "../",
|
|
"jsx": "react",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"react-bootstrap-typeahead-tests.tsx"
|
|
]
|
|
}
|