jazz-react-native 0.8.15 → 0.8.17

Sign up to get free protection for your applications and to get access to all the features.
package/tsconfig.json CHANGED
@@ -1,8 +1,6 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "lib": [
4
- "ESNext",
5
- ],
3
+ "lib": ["ESNext"],
6
4
  "module": "esnext",
7
5
  "target": "ESNext",
8
6
  "moduleResolution": "bundler",
@@ -13,9 +11,7 @@
13
11
  "forceConsistentCasingInFileNames": true,
14
12
  "noUncheckedIndexedAccess": true,
15
13
  "esModuleInterop": true,
16
- "declaration": true,
14
+ "declaration": true
17
15
  },
18
- "include": [
19
- "./src/**/*"
20
- ],
21
- }
16
+ "include": ["./src/**/*"]
17
+ }
package/.eslintrc.cjs DELETED
@@ -1,24 +0,0 @@
1
- module.exports = {
2
- extends: [
3
- "eslint:recommended",
4
- "plugin:@typescript-eslint/recommended",
5
- "plugin:require-extensions/recommended",
6
- "prettier",
7
- ],
8
- parser: "@typescript-eslint/parser",
9
- plugins: ["@typescript-eslint", "require-extensions"],
10
- parserOptions: {
11
- project: "./tsconfig.json",
12
- tsconfigRootDir: __dirname,
13
- },
14
- ignorePatterns: [".eslintrc.cjs", "dist"],
15
- root: true,
16
- rules: {
17
- "no-unused-vars": "off",
18
- "@typescript-eslint/no-unused-vars": [
19
- "error",
20
- { argsIgnorePattern: "^_", varsIgnorePattern: "^_" },
21
- ],
22
- "@typescript-eslint/no-floating-promises": "error",
23
- },
24
- };
package/.prettierrc.js DELETED
@@ -1,9 +0,0 @@
1
- /** @type {import("prettier").Config} */
2
- const config = {
3
- trailingComma: "all",
4
- tabWidth: 4,
5
- semi: true,
6
- singleQuote: false,
7
- };
8
-
9
- export default config;