Skip to content

Commit

Permalink
include test env vars in root tsconfig
Browse files Browse the repository at this point in the history
This means vs code won't report linting errors for  undefined env vars
  • Loading branch information
lalexgap committed Sep 6, 2023
1 parent 3a7a490 commit f422e19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/nitro-protocol/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"baseUrl": "src",
"baseUrl": ".",
"target": "es2018",
"module": "commonjs",
"strict": true,
Expand All @@ -10,5 +10,5 @@
"declaration": true,
"skipLibCheck": true
},
"include": ["src/index.ts", "addresses.json"]
"include": ["src/index.ts", "addresses.json", "../test/@types/environment.d.ts"]
}

0 comments on commit f422e19

Please sign in to comment.