feat: init

This commit is contained in:
Morten Olsen
2023-09-06 10:56:36 +02:00
commit bfa26fbfb1
55 changed files with 6076 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
{
"compilerOptions": {
"declarationDir": "../dist/cjs/types",
"outDir": "../dist/cjs"
},
"extends": "@bob-the-algorithm/config/tsconfig.cjs.json",
"include": [
"../src/**/*"
]
}

View File

@@ -0,0 +1,10 @@
{
"compilerOptions": {
"declarationDir": "../dist/esm/types",
"outDir": "../dist/esm"
},
"extends": "@bob-the-algorithm/config/tsconfig.esm.json",
"include": [
"../src/**/*"
]
}

View File

@@ -0,0 +1,11 @@
{
"include": [],
"references": [
{
"path": "./tsconfig.cjs.json"
},
{
"path": "./tsconfig.esm.json"
}
]
}