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