Created
July 16, 2021 20:29
-
-
Save SealtielFreak/03d910387e63f3a6e1f21f6f2791415f to your computer and use it in GitHub Desktop.
Love2D-Typescript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"private": true, | |
"scripts": { | |
"build": "tstl", | |
"dev": "tstl --watch", | |
"love": "love dist" | |
}, | |
"devDependencies": { | |
"typescript-to-lua": "...", | |
"love-typescript-definitions": "...", | |
"lua-types": "..." | |
}, | |
"dependencies": { | |
"love-typescript-definitions": "...", | |
"lua-types": "..." | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"compilerOptions": { | |
"target": "esnext", | |
"lib": ["esnext"], | |
"moduleResolution": "node", | |
"types": [ | |
"lua-types/jit", | |
"love-typescript-definitions" | |
], | |
"strict": true, | |
"rootDir": "src", | |
"outDir": "dist" | |
}, | |
"exclude": [ | |
"node_modules" | |
], | |
"tstl": { | |
"luaTarget": "universal" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment