@rbxts/zyntex-sdk 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/zyntex-sdk",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Typescript types for: The Roblox Zyntex SDK.",
5
5
  "main": "init.lua",
6
6
  "license": "MIT",
package/.eslintrc DELETED
@@ -1,23 +0,0 @@
1
- {
2
- "parser": "@typescript-eslint/parser",
3
- "parserOptions": {
4
- "jsx": true,
5
- "useJSXTextNode": true,
6
- "ecmaVersion": 2018,
7
- "sourceType": "module",
8
- "project": "./tsconfig.json"
9
- },
10
- "ignorePatterns": [
11
- "/out"
12
- ],
13
- "plugins": [
14
- "@typescript-eslint",
15
- "roblox-ts"
16
- ],
17
- "extends": [
18
- "eslint:recommended",
19
- "plugin:@typescript-eslint/recommended",
20
- "plugin:roblox-ts/recommended"
21
- ],
22
- "rules": {}
23
- }
package/.idea/discord.xml DELETED
@@ -1,7 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="DiscordProjectSettings">
4
- <option name="show" value="ASK" />
5
- <option name="description" value="" />
6
- </component>
7
- </project>
@@ -1,6 +0,0 @@
1
- <component name="InspectionProjectProfileManager">
2
- <profile version="1.0">
3
- <option name="myName" value="Project Default" />
4
- <inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
5
- </profile>
6
- </component>
package/.idea/modules.xml DELETED
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectModuleManager">
4
- <modules>
5
- <module fileurl="file://$PROJECT_DIR$/.idea/zyntex-sdk-typescript.iml" filepath="$PROJECT_DIR$/.idea/zyntex-sdk-typescript.iml" />
6
- </modules>
7
- </component>
8
- </project>
package/.idea/vcs.xml DELETED
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="VcsDirectoryMappings">
4
- <mapping directory="$PROJECT_DIR$" vcs="Git" />
5
- </component>
6
- </project>
@@ -1,12 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <module type="WEB_MODULE" version="4">
3
- <component name="NewModuleRootManager">
4
- <content url="file://$MODULE_DIR$">
5
- <excludeFolder url="file://$MODULE_DIR$/.tmp" />
6
- <excludeFolder url="file://$MODULE_DIR$/temp" />
7
- <excludeFolder url="file://$MODULE_DIR$/tmp" />
8
- </content>
9
- <orderEntry type="inheritedJdk" />
10
- <orderEntry type="sourceFolder" forTests="false" />
11
- </component>
12
- </module>
Binary file
package/tsconfig.json DELETED
@@ -1,31 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- // required
4
- "allowSyntheticDefaultImports": true,
5
- "downlevelIteration": true,
6
- "jsx": "react",
7
- "jsxFactory": "React.createElement",
8
- "jsxFragmentFactory": "React.Fragment",
9
- "module": "commonjs",
10
- "moduleResolution": "Node",
11
- "noLib": true,
12
- "resolveJsonModule": true,
13
- "forceConsistentCasingInFileNames": true,
14
- "moduleDetection": "force",
15
- "strict": true,
16
- "target": "ESNext",
17
- "typeRoots": [
18
- "node_modules/@rbxts",
19
- ],
20
- // configurable
21
- "rootDir": "",
22
- "outDir": "",
23
- "baseUrl": "",
24
- "incremental": true,
25
- "tsBuildInfoFile": "out/tsconfig.tsbuildinfo",
26
- "experimentalDecorators": true,
27
- "importHelpers": true,
28
- "plugins": [
29
- ]
30
- }
31
- }