{
	"extends": "../../tsconfig.json",
	"compilerOptions": {
		"rootDir": ".",
		"outDir": "dist",
		"target": "esnext",
		"module": "esnext",
		"importHelpers": true,
		"skipLibCheck": true,
		"allowJs": true,
		"incremental": false,
		"allowSyntheticDefaultImports": true,
		"baseUrl": ".",
		"types": ["webpack-env", "vitest/globals"],
		"typeRoots": ["@testing-library", "@types"],
		"paths": {
			"@/*": ["src/*"]
		},
		"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
		// TODO: remove all options below this line
		"noUnusedLocals": false,
		"noImplicitReturns": false
	},
	"include": ["src/**/*.ts", "src/**/*.vue"]
}