Skip to content

Move output to `/lib`

Compare
Choose a tag to compare
@basarat basarat released this 13 Nov 21:55
· 309 commits to master since this release
  • Instead of import * as csx from 'typestyle/csx' you now need to do import * as csx from 'typestyle/lib/csx' this is because previously we made you recompile csx and now we ship the compiled .js files

Key reasons for doing this change:

  • work with ts-loader
  • preserves outDir option for nodejs users
  • The definition .d.ts files are picked up by the ts compiler instead of .ts and so you can use the strictest TypeScript features without having to also recompile our code.