Skip to content

Commit 6eb8322

Browse files
authored
Merge pull request #148 from Gearbox-protocol/build
fix: build
2 parents 8bde85c + 7d87a54 commit 6eb8322

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

.eslintrc.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
22
"root": true,
3-
"extends": ["@gearbox-protocol/eslint-config"]
3+
"extends": ["@gearbox-protocol/eslint-config"],
4+
"parserOptions": {
5+
"project": "./tsconfig.eslint.json"
6+
}
47
}

tsconfig.eslint.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"extends": "./tsconfig.json",
3+
"include": ["src", "scripts"],
4+
"compilerOptions": {
5+
"noEmit": true
6+
}
7+
}

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@
1414
"outDir": "lib",
1515
"allowSyntheticDefaultImports": true,
1616
"esModuleInterop": true
17-
}
17+
},
18+
"include": ["src"]
1819
}

0 commit comments

Comments
 (0)