{
    "compilerOptions": {
		"baseUrl": ".",
		"jsx": "react-jsx",
        "module": "es6",
        "target": "ES2021",
		"moduleResolution": "node",
		"paths": {
			"@clients/*": ["./src/clients/*"],
			"@hooks": ["./src/hooks"],
			"@services/*": ["./src/services/*"],
			"Components/*": ["./src/components/*"],
			"Mocks/*": ["./mocks/*"],
			"Mocks": ["./mocks"],
			"Styles": ["./styles"],
			"Types/*": ["./src/types/*"]
		},
        "alwaysStrict": false,
		"noImplicitAny": false,
		"skipLibCheck": true,
		"strictBindCallApply": true,
        "strictNullChecks": true,
        "allowJs": true,
		"checkJs": true,
		"isolatedModules": true,
		"noEmit": true,
		"resolveJsonModule": true,
		"types": ["vitest/globals"]
    },
	"exclude": ["node_modules", "dist"],
    "include": [
        ".storybook/**/*",
		"loader.tsx",
		"mocks/**/*",
		"sandbox.ts",
		"src/**/*",
		"stories/**/*",
		"styles/**/*",
		"tests/**/*"
    ]
}