chore: implement basic build system

This commit is contained in:
2025-06-24 19:32:00 +02:00
parent e603b4972a
commit 8b3c059210
16 changed files with 1266 additions and 0 deletions

9
pkgs/solver/package.json Normal file
View File

@@ -0,0 +1,9 @@
{
"name": "@pow-captcha/solver",
"version": "0.0.0",
"module": "dist/lib.js",
"types": "dist/lib.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json"
}
}

3
pkgs/solver/src/lib.ts Normal file
View File

@@ -0,0 +1,3 @@
export function solve(): void {
}

View File

@@ -0,0 +1,8 @@
{
"extends": "../../tsconfig.build.json",
"compilerOptions": {
"outDir": "dist"
},
"include": ["src/**/*"],
"exclude": ["**/*.spec.ts"]
}

View File

@@ -0,0 +1,4 @@
{
"extends": "../../tsconfig.base.json",
"include": ["src/**/*"]
}