mirror of
https://github.com/araxiaonline/wow-eluna-ts-module.git
synced 2026-06-13 02:42:22 -04:00
39 lines
895 B
JSON
39 lines
895 B
JSON
{
|
|
"$schema": "./tstl.schema.json",
|
|
"compilerOptions": {
|
|
"strict": false,
|
|
"target": "esnext",
|
|
"outDir": "[[module_output]]",
|
|
"skipLibCheck": true,
|
|
"lib": [
|
|
"esnext"
|
|
],
|
|
"moduleResolution": "node",
|
|
"types": [
|
|
"lua-types/5.2",
|
|
"@typescript-to-lua/language-extensions",
|
|
"wow-eluna-ts-module",
|
|
"@araxiaonline/wow-wotlk-declarations"
|
|
],
|
|
"rootDir": "modules"
|
|
},
|
|
"include": [
|
|
"modules/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/node_modules",
|
|
"test",
|
|
"**/__tests__"
|
|
],
|
|
"tstl": {
|
|
"luaTarget": "5.2",
|
|
"noHeader": true,
|
|
"luaLibImport": "require",
|
|
"luaBundleEntry": "./modules/index.ts",
|
|
"luaPlugins": [
|
|
{ "name": "./plugins/aio-plugin.ts" }
|
|
]
|
|
}
|
|
}
|