diff --git a/package.json b/package.json index 2e861b5..4101aef 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,8 @@ "lint": "make lint", "fix": "make fix", "tsc": "tsc", - "start": "make start" + "start": "make start", + "build": "make build" }, "repository": { "type": "git", diff --git a/test/tsconfig.json b/test/tsconfig.json deleted file mode 100644 index 0580f76..0000000 --- a/test/tsconfig.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "compilerOptions": { - "module": "esnext", - "target": "es2020", - - "strict": true, - "noFallthroughCasesInSwitch": true, - "experimentalDecorators": true, - "noUnusedLocals": true, - - "moduleResolution": "node", - "sourceMap": true, - "outDir": "esm", - "baseUrl": ".", - "paths": { - "*": [ - "src/types/*" - ] - }, - "lib": [ - "DOM", - "ES2020" - ], - "declaration": true - }, - "include": [ - "**/*.ts" - ] -}