{
	"compilerOptions": {
		/* Language and Environment */
		"target": "es2016" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,

		/* Modules */
		"module": "CommonJS" /* Specify what module code is generated. */,
		"rootDir": "./" /* Specify the root folder within your source files. */,
		"moduleResolution": "node10" /* Specify how TypeScript looks up a file from a given module specifier. */,
		"types": ["node", "jest"],
		/* Emit */
		"declaration": true /* Generate .d.ts files from TypeScript and JavaScript files in your project. */,
		"emitDeclarationOnly": true /* Only output d.ts files and not JavaScript files. */,
		"inlineSourceMap": true /* Include sourcemap files inside the emitted JavaScript. */,
		"outDir": "./dist/types" /* Specify an output folder for all emitted files. */,

		/* Interop Constraints */
		"isolatedModules": true /* Ensure that each file can be safely transpiled without relying on other imports. */,
		"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
		"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,

		/* Type Checking */
		"strict": true /* Enable all strict type-checking options. */
	},
	"exclude": ["node_modules", "dist", "tmp"]
}
