crc16-xmodem.ts

Simple implementation of crc16-xmodem
git clone git://git.finwo.net/lib/crc16-xmodem.ts
Log | Files | Refs | README | LICENSE

tsconfig.json (237B)


      1 {
      2   "compilerOptions": {
      3     "esModuleInterop": true,
      4     "target": "ES6",
      5     "module": "commonjs",
      6     "lib": ["ES6"],
      7     "outDir": "dist",
      8     "sourceMap": false,
      9     "types": [
     10       "node"
     11     ]
     12   },
     13   "include": ["src/**/*.ts"]
     14 }