{
	"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
		"preserveSymlinks": true // Also needs webpackConfig.resolve.symlinks = false
	},
	"exclude": [
		"**/build/**",
		"**/test/**"
	],
	"include": [
		"plugins/advanced-responsive-video-embedder/src/*",
		"plugins/arve-*/src/*",
		"plugins/symbiosis/src/ts/*",
	]
}
