DefinitelyTyped/types/algoliasearch/tsconfig.json
Haroen Viaene da8016d71f feat(algoliasearch): rewrite almost completely (#25486)
* feat(algoliasearch): rewrite almost completely

Changes are mainly:

1. now has a `lite.d.ts` file for `algoliasearch/lite`
2. fix some of the options in settings and queries
3. specify more result types

* chore: update version number

* chore: fix things by copying, pasting, and removing

* test: remove header

* chore: move to folder, it maybe helps
2018-05-04 13:56:50 -07:00

25 lines
522 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": false,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"lite/index.d.ts",
"algoliasearch-tests.ts"
]
}