streamline build

This commit is contained in:
Darius
2025-11-18 23:42:44 +01:00
parent 55f4e90fea
commit b4d3f918c9
2 changed files with 12 additions and 11 deletions

View File

@@ -3,7 +3,8 @@
"version": "1.0.0",
"description": "",
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts"
},

View File

@@ -1,19 +1,19 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "Node",
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"isolatedModules": true,
"resolveJsonModule": true,
"lib": ["ES2022"],
"types": ["node"],
"declaration": true,
"declarationMap": true,
"outDir": "./dist",
"rootDir": "./src",
"types": ["node"],
"incremental": true
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"resolveJsonModule": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]