{
	...
	"typeAcquisitionDefinition": {
		"properties": {
	    "typeAcquisition": {
        "type": "object",
        "description": "Auto type (.d.ts) acquisition options for this project. Requires TypeScript version 2.1 or later.",
        "properties": {
          "enable": {
            "description": "Enable auto type acquisition",
            "type": "boolean",
            "default": false
          },
          "include": {
            "description": "Specifies a list of type declarations to be included in auto type acquisition. Ex. [\\"jquery\\", \\"lodash\\"]",
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "exclude": {
            "description": "Specifies a list of type declarations to be excluded from auto type acquisition. Ex. [\\"jquery\\", \\"lodash\\"]",
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      }
    }
  },
	...
}

Automatic Type Acquisition

example

{
	"typeAcquisition": {
		"enable": true,
		"include": ["react"],
		"exclude": ["leftpad"]
}

enable

exclude

include