DefinitelyTyped/types/airtable/tsconfig.json
Brandon Valosek e168859f8e [airtable] new package - airtable npm module (Airtable JS API) (#34119)
* [airtable] initialized airtable module and basic types

* [airtable] added FieldSet interface for constraining shape of Rows

* [airtable] using export =, other types in namespace, all in global
2019-03-25 09:52:00 -07:00

24 lines
489 B
JSON

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