Files
noggit-red/scripts/tsconfig.json
2021-09-02 02:07:56 +03:00

22 lines
472 B
JSON

/**
* This file has a working configuration to write
* script brushes with TypeScriptToLua
* (https://github.com/TypeScriptToLua/TypeScriptToLua)
*/
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"outDir": "./_tsbuild",
"forceConsistentCasingInFileNames": true
},
"tstl": {
"luaTarget": "5.1",
"luaPlugins": [],
"noImplicitSelf": true,
}
}