1
0
mirror of https://git.hibas.dev/OpenServer/NodeLogging.git synced 2025-10-27 04:10:45 +00:00

Add ESM Module support

This commit is contained in:
Fabian Stamm
2023-10-14 16:54:53 +02:00
parent 6c65d2c83d
commit 08fabf5bf8
7 changed files with 1454 additions and 8 deletions

11
tsconfig.esm.json Normal file
View File

@ -0,0 +1,11 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "ESNext",
"target": "ES2017",
"moduleResolution": "node",
"outDir": "esm"
},
"exclude": ["node_modules"],
"include": ["src"]
}