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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { defineConfig } from 'vite'

export default defineConfig({
  clearScreen: false,
  optimizeDeps: {
    exclude: ["ezno"]
  },
  base: "/ezno/playground",
  build: {
    outDir: "dist/playground"
  },
  server: {
    fs: { strict: false }
  },
})