Skip to content

Instantly share code, notes, and snippets.

@SealtielFreak
Created July 16, 2021 20:29
Show Gist options
  • Save SealtielFreak/03d910387e63f3a6e1f21f6f2791415f to your computer and use it in GitHub Desktop.
Save SealtielFreak/03d910387e63f3a6e1f21f6f2791415f to your computer and use it in GitHub Desktop.
Love2D-Typescript
{
"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": "..."
}
}
{
"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