// Used by eslint for linting
{
	// We're just using this for index.d.ts
	"include": [
	  "types/index.d.ts",
	  "types/test.ts"
    ],
	"compilerOptions": {
		// We only want to lint the declaration file
		"noEmit": true,
		// We're relying on Babel for transpiling
		"lib": ["ESNext"],
		// We're relying on Babel for transpiling
		"target": "ESNext",
		// Inquirer requires this option
		"allowSyntheticDefaultImports": true,
		// Support type imports from globby and handlebars
		"moduleResolution": "node"
	}
}
