Make it ESM only

This commit is contained in:
Fabian Stamm
2023-11-22 22:18:40 +01:00
parent 153aca0ccb
commit e0b51625d8
3 changed files with 12 additions and 24 deletions

View File

@ -1,12 +1,11 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "esnext",
"module": "ESNext",
"target": "ESNext",
"moduleResolution": "node",
"outDir": "esm",
"noImplicitAny": false,
"sourceMap": true,
"outDir": "out",
"declaration": true,
"typeRoots": ["node_modules/@types"]
"sourceMap": true
},
"exclude": ["node_modules"],
"include": ["src"]