Release v0.1.0 #5

Merged
B00tLoad merged 37 commits from release/v.0.1.0 into main 2025-09-01 12:19:37 +02:00
2 changed files with 5 additions and 2 deletions
Showing only changes of commit e5a3e04e0c - Show all commits

View File

@@ -50,6 +50,7 @@
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"check": "pnpm lint && pnpm typecheck",
"docs:generate": "typedoc",
"format:check": "prettier --check .",

View File

@@ -4,6 +4,7 @@
"esModuleInterop": true,
"skipLibCheck": true,
"target": "es2022",
"sourceMap": true,
"allowJs": true,
"resolveJsonModule": true,
"moduleDetection": "force",
@@ -20,6 +21,7 @@
"moduleResolution": "node",
"incremental": true,
"outDir": "dist",
"declaration": true,
/* Path Aliases */
"baseUrl": "./src",
@@ -27,6 +29,6 @@
"~/*": ["./src/*"]
}
},
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.cjs", "src/**/*.js"],
"include": ["src/**/*.ts", "src/**/*.tsx"],
"exclude": ["node_modules/**/*", "docs/**/*", "dist/**/*"]
}