You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Mekanome/tsconfig.json

27 lines
714 B

6 months ago
{
"$schema": "https://raw.githubusercontent.com/TypeScriptToLua/TypeScriptToLua/master/tsconfig-schema.json",
"compilerOptions": {
"target": "ESNext",
"lib": ["ESNext"],
"moduleResolution": "Node",
"baseUrl": ".",
"rootDir": "src",
"outDir": "dist",
"types": ["@typescript-to-lua/language-extensions", "lua-types/5.1"],
"strict": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"allowUmdGlobalAccess": true
},
"include": ["src/**/*"],
"tstl": {
"luaTarget": "5.1",
"noImplicitGlobalVariables": true,
"luaLibImport": "inline",
}
}