ezno 0.0.23

A fast and correct TypeScript type checker and compiler with additional experiments. For use as a library or through the CLI
Documentation
body {
    margin: 0;
    background: black;
    color: white;
    font-family: 'Inter', sans-serif;
    padding: 48px;
    display: flex;
    flex-direction: column;
    /* This should be 100vh, but I don't know CSS layouts */
    min-height: 70vh;
}

header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

main {
    flex-grow: 1;
}

.diagnostics {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 26px;
    font-family: monospace;
    font-size: 16px;
}

a {
    color: rgb(255, 217, 80);
}

a:visited {
    color: coral;
}

hr {
    margin: 40px 0;
}

button {
    margin: 20px 0;
    padding: 6px 20px;
    font-family: inherit;
    background: none;
    color: inherit;
    border: 3px solid white;
    border-radius: 6px;
}

button:hover {
    cursor: pointer;
}

@media (max-width: 700px) {
    header {
        flex-direction: column;
    }
}