├── .eslintrc.json ├── .github └── FUNDING.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── default.project.json ├── package.json ├── src ├── flamework.ts ├── index.ts ├── metadata.ts ├── modding.ts ├── prelude.ts ├── reflect.ts └── utility.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbxts-flamework/core/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [Fireboltofdeath] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbxts-flamework/core/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbxts-flamework/core/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbxts-flamework/core/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbxts-flamework/core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbxts-flamework/core/HEAD/README.md -------------------------------------------------------------------------------- /default.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbxts-flamework/core/HEAD/default.project.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbxts-flamework/core/HEAD/package.json -------------------------------------------------------------------------------- /src/flamework.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbxts-flamework/core/HEAD/src/flamework.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbxts-flamework/core/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbxts-flamework/core/HEAD/src/metadata.ts -------------------------------------------------------------------------------- /src/modding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbxts-flamework/core/HEAD/src/modding.ts -------------------------------------------------------------------------------- /src/prelude.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbxts-flamework/core/HEAD/src/prelude.ts -------------------------------------------------------------------------------- /src/reflect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbxts-flamework/core/HEAD/src/reflect.ts -------------------------------------------------------------------------------- /src/utility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbxts-flamework/core/HEAD/src/utility.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbxts-flamework/core/HEAD/tsconfig.json --------------------------------------------------------------------------------