Revert "Now that we're TS, move back to commonjs for jest"

This reverts commit 8b6c858611.
This commit is contained in:
Christopher Monsanto 2020-08-21 06:43:47 -04:00
parent 32ba2af711
commit 3f60f61e00
2 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,8 @@ import path from 'path';
import { fileURLToPath } from 'url';
import fs from 'fs';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const libdir = path.join(__dirname, "../..");
export type Type = {

View File

@ -3,7 +3,7 @@
"incremental": true,
"target": "es2020",
"lib": ["es2020"],
"module": "commonjs",
"module": "esnext",
"jsx": "react",
"strict": true,
"moduleResolution": "node",