{
	"compilerOptions": {
		"rootDir": "Source",
		//"sourceMap": true, // commented; doesn't work currently, so keeping Dist folder cleaner
		//"module": "ES2015",
		"module": "ES2020",
		"moduleResolution": "node",
		"target": "ES2018",
		"jsx": "react",
		"noImplicitAny": false,
		"experimentalDecorators": true,
		"allowSyntheticDefaultImports": true, // doesn't modify output, *or* own import code (it's just for type-checking)
		//"esModuleInterop": true, // doesn't modify output, only code for the stuff we import
		"outDir": "Dist",
		"declaration": true,
		"declarationDir": "Dist",

		//"useDefineForClassFields": true, // needed for mobx @observable
		"lib": [
			"ES2023",
			//"ESNext", // fixes AsyncIterator type-missing issue
			"DOM",
			"DOM.Iterable",
			//"ESNext.Collection",
		], 

		//"strict": true, // enables all of the below (other than noImplicitReturns)
		//"noImplicitAny": true,
		//"noImplicitThis": true,
		//"noImplicitReturns": true,
		"alwaysStrict": true,
		//"strictBindCallApply": true,
		"strictNullChecks": true,
		//"strictFunctionTypes": true,
		//"strictPropertyInitialization": true,
	},
	"include": [
		"Typings/**/*.d.ts",
		"Source/**/*.ts",
		"Source/**/*.tsx"
	],
	"compileOnSave": true
}