chore: enable node to run the output of tsc without modification

This commit is contained in:
Glen Whitney 2022-09-07 10:10:41 -04:00
parent 0430eb6d5c
commit 2377860ff3
4 changed files with 7 additions and 2 deletions

View file

@ -1,4 +1,4 @@
import { useTypes } from 'over.ts/src/index';
import { useTypes } from 'over.ts/src/index.js';
const types = {
number: (x: unknown): x is number => typeof x === 'number',