mirror of
https://github.com/Ukendio/jecs.git
synced 2025-04-24 17:10:03 +00:00
* Add package.json, tsconfig.json, and change gitignore * Typescript Types * Make World a single class, refactor of all query types * Fix InferComponents types due to typo / misunderstanding * Bump dependencies * Fix get type to include undefined and add documentation * Remove non-user facing types * Rename PossiblyUndefinedPack -> Nullable * Some changes to how EntityIndex is handled * Consistent formatting * Remove EntityIndex related type definitions * Match API * Doc comments
26 lines
No EOL
688 B
JSON
26 lines
No EOL
688 B
JSON
{
|
|
"compilerOptions": {
|
|
// required
|
|
"allowSyntheticDefaultImports": true,
|
|
"downlevelIteration": true,
|
|
"jsx": "react",
|
|
"jsxFactory": "Roact.createElement",
|
|
"jsxFragmentFactory": "Roact.Fragment",
|
|
"module": "commonjs",
|
|
"moduleResolution": "Node",
|
|
"noLib": true,
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"target": "ESNext",
|
|
"typeRoots": ["node_modules/@rbxts"],
|
|
|
|
// configurable
|
|
"rootDir": "lib",
|
|
"outDir": "out",
|
|
"baseUrl": "lib",
|
|
"incremental": true,
|
|
"tsBuildInfoFile": "out/tsconfig.tsbuildinfo",
|
|
|
|
"moduleDetection": "force"
|
|
}
|
|
} |