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.
26 lines
714 B
26 lines
714 B
{
|
|
"$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",
|
|
}
|
|
}
|
|
|
|
|