Files
wow-eluna-ts-module/tsconfig.module.json
2024-02-25 23:06:59 -05:00

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" }
]
}
}