mirror of
https://github.com/araxiaonline/wow.ets.modules.git
synced 2026-06-13 02:32:21 -04:00
43 lines
829 B
JSON
43 lines
829 B
JSON
{
|
|
"$schema": "./tstl.schema.json",
|
|
"compilerOptions": {
|
|
"strict": false,
|
|
"target": "esnext",
|
|
"outDir": "./dist",
|
|
"skipLibCheck": true,
|
|
"lib": [
|
|
"esnext",
|
|
"DOM"
|
|
],
|
|
"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",
|
|
"**/*spec.ts",
|
|
"**/__tests__",
|
|
"**/__mocks__"
|
|
],
|
|
"tstl": {
|
|
"luaTarget": "5.2",
|
|
"noHeader": true,
|
|
"luaLibImport": "require",
|
|
"luaBundleEntry": "./modules/index.ts",
|
|
"luaPlugins": [
|
|
{
|
|
"name": "./plugins/aio-plugin.ts"
|
|
}
|
|
]
|
|
}
|
|
} |