diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 0000000..da85d7b --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,7 @@ +{ + "compilerOptions": { + "target": "esnext", + "allowJs": true, + "checkJs": true + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..0ad6a10 --- /dev/null +++ b/package.json @@ -0,0 +1,13 @@ +{ + "name": "controller-registry", + "exports": { + ".": "./src/controller-registry.js" + }, + "type": "module", + "license": "MIT", + "version": "0.0.1", + "url": "https://git.but.gay/darkwiiplayer/controller-registry", + "scripts": { + "definitions": "tsc src/*.js --declaration --allowJs --emitDeclarationOnly" + } +}