{
	"compileOnSave": false,
	"compilerOptions": {
		"noImplicitAny": false,
		"removeComments": true,
		"allowUnreachableCode": false,
		"strictNullChecks": true,
		"sourceMap": true,
		"allowJs": false,
		/* https://github.com/TypeStrong/fork-ts-checker-webpack-plugin says this is needed */
		"importsNotUsedAsValues": "preserve",
		/* -- wppack.io (changed) -- */
		/* Basic Options */
		"target": "esnext", // we would be compiling with babel, so we can target esnext
		"module": "esnext", // for import() and es5 import/export
		"lib": [
			"esnext",
			"DOM",
			"DOM.Iterable",
		], // include all libraries you need
		"jsx": "react",
		"jsxFactory": "createElement",
		"jsxFragmentFactory": "Fragment",
		/* Module Resolution Options */
		"moduleResolution": "node", // because of webpack
		"allowSyntheticDefaultImports": true, // to make it compatible with babel
		"esModuleInterop": true, // to make it compatible with babel
		"isolatedModules": false // to limit implementation
	},
	"includes": [
		"src/**/*.ts",
		"src/**/*.tsx",
		"src/**/*.js",
		"src/**/*.jsx",
	],
	"exclude": [
		"node_modules",
		"build",
	]
}
