feat: first step

This commit is contained in:
2025-03-16 00:22:42 +08:00
commit 764addd7f6
41 changed files with 6917 additions and 0 deletions

28
tsconfig.example.json Normal file
View File

@@ -0,0 +1,28 @@
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"composite": true,
"rootDir": ".",
"types": [
"node"
],
"noEmit": true,
"paths": {
"konoebml": [
"./src/index.ts"
],
"konoebml/*": [
"./src/*"
]
}
},
"files": [],
"include": [
"examples/*"
],
"references": [
{
"path": "./tsconfig.lib.json"
}
]
}