anomaly-packer
Version:
Anomaly Packer is a utility package for STALKER Anomaly creators to help them develop addons at speed with TypeScript's type-safety and game-oriented build tools.
26 lines (25 loc) • 912 B
JSON
{
"$schema": "https://raw.githubusercontent.com/TypeScriptToLua/TypeScriptToLua/master/tsconfig-schema.json",
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"lib": ["ESNext"],
"moduleResolution": "Bundler",
"moduleDetection": "force",
"strict": true,
"skipLibCheck": true,
// Config modules author xml as JSX. The automatic runtime is required (the classic one
// emits bare `React.createElement`, which fails since these modules never import React),
// and the source is this package rather than `react` so the xray element types come from
// a single place — see `src/jsx-runtime.ts` for why pointing at react does not work.
"jsx": "react-jsx",
"jsxImportSource": "anomaly-packer"
},
"files": ["./lua-lib.d.ts"],
"tstl": {
"luaTarget": "JIT",
"luaLibImport": "inline",
"noHeader": true,
"noImplicitSelf": true
}
}