From 39850d8660e101c26dd793f7464340bcfd4ed723 Mon Sep 17 00:00:00 2001 From: zomo Date: Sun, 27 Jun 2021 20:47:10 -0500 Subject: [PATCH] init --- index.d.ts | 45 +++++++++++++++++++++++++++++++++++++++++++++ package.json | 22 ++++++++++++---------- tsconfig.json | 18 ++++++++++++++++++ 3 files changed, 75 insertions(+), 10 deletions(-) create mode 100644 index.d.ts create mode 100644 tsconfig.json diff --git a/index.d.ts b/index.d.ts new file mode 100644 index 0000000..890a417 --- /dev/null +++ b/index.d.ts @@ -0,0 +1,45 @@ +// structs +/// +/// +/// +/// +/// +/// +/// + +// RAGE +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// + +// base +/// +/// +/// +/// +/// +/// \ No newline at end of file diff --git a/package.json b/package.json index 5cc8700..6397191 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,14 @@ { - "name": "types-ts-2take1", - "version": "1.0.0", - "description": "Typescript types for 2take1, used with https://typescripttolua.github.io", - "keywords": [ - "Typescript", - "2take1", - "lua" - ], - "author": "Zomo", - "license": "UNLICENSED" + "name": "types-ts-2take1", + "version": "1.0.0", + "description": "Typescript types for 2take1, used with https://typescripttolua.github.io", + "keywords": [ + "Typescript", + "2take1", + "lua" + ], + "main": "index.d.ts", + "types": "index", + "author": "Zomo", + "license": "UNLICENSED" } diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..bea13c5 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,18 @@ +{ + "files": [ + "index.d.ts" + ], + "compilerOptions": { + "target": "esnext", + "lib": ["esnext"], + "noImplicitAny": true, + "noImplicitThis": true, + "strictNullChecks": true, + "strictFunctionTypes": true, + "baseUrl": "./", + "typeRoots": ["./"], + "types": [], + "noEmit": true, + "forceConsistentCasingInFileNames": true + } +} \ No newline at end of file