diff --git a/package.json b/package.json index b06d2ed..59a2da6 100644 --- a/package.json +++ b/package.json @@ -17,17 +17,7 @@ "bugs": { "url": "https://github.com/BHC-IT/stronk-types/issues" }, - "type": "module", - "exports": { - ".": { - "types": "./types/index.d.ts", - "default": "./types/index.d.ts" - } - }, "types": "./types/index.d.ts", - "directories": { - "test": "tests" - }, "dependencies": { "@type-challenges/utils": "^0.1.1" }, diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..76d0d23 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,13 @@ +{ + "$schema": "https://json.schemastore.org/tsconfig", + "extends": "@tsconfig/recommended/tsconfig.json", + "noErrorTruncation": true, + "preserveWatchOutput": true, + "include": [ + "./types/**/*.ts" + ], + "compilerOptions": { + "noEmit": true, + "noEmitOnError": true, + } +}