diff --git a/package.json b/package.json index 76d8d64..f399b6b 100644 --- a/package.json +++ b/package.json @@ -81,6 +81,7 @@ "node": ">=18" }, "publishConfig": { - "access": "public" + "access": "public", + "npm": false } } diff --git a/tsconfig.json b/tsconfig.json index 4c0cf89..a5f650b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,9 +12,9 @@ "strict": true, "target": "ES2022" }, + "exclude": ["node_modules"], + "include": ["src"], "ts-node": { "esm": true - }, - "include": ["src"], - "exclude": ["node_modules"] + } }