+1
-1
bun.lock
+1
-1
bun.lock
+13
-3
eslint.config.js
+13
-3
eslint.config.js
···
1
1
// https://docs.expo.dev/guides/using-eslint/
2
-
const { defineConfig } = require('eslint/config');
3
-
const expoConfig = require('eslint-config-expo/flat');
2
+
const { defineConfig } = require("eslint/config");
3
+
const expoConfig = require("eslint-config-expo/flat");
4
4
5
5
module.exports = defineConfig([
6
6
expoConfig,
7
7
{
8
-
ignores: ['dist/*'],
8
+
ignores: ["dist/*"],
9
+
},
10
+
{
11
+
settings: {
12
+
"import/resolver": {
13
+
typescript: {
14
+
// This is needed to properly resolve paths
15
+
project: "./tsconfig.json",
16
+
},
17
+
},
18
+
},
9
19
},
10
20
]);