Skip to content

Commit

Permalink
Renamed tsconfig.test to unit (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmingles committed Jul 18, 2024
1 parent e303063 commit 16dbbed
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"project": [
"./tsconfig.json",
"./e2e/tsconfig.json",
"./tsconfig.test.json"
"./tsconfig.unit.json"
]
},

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"test:lint": "eslint . --ext ts",
"test:unit": "vitest",
"ts:build": "npm run clean && tsc -p ./tsconfig.json",
"ts:check": "tsc -p ./tsconfig.json --noEmit --module preserve --moduleResolution bundler && tsc -p tsconfig.test.json --noEmit --module preserve --moduleResolution bundler && tsc -p e2e/tsconfig.json --noEmit --skipLibCheck",
"ts:check": "tsc -p ./tsconfig.json --noEmit --module preserve --moduleResolution bundler && tsc -p tsconfig.unit.json --noEmit --module preserve --moduleResolution bundler && tsc -p e2e/tsconfig.json --noEmit --skipLibCheck",
"ts:watch": "npm run ts:build -- --watch",
"package": "vsce package -o releases/ && vsce package -o releases/vscode-deephaven-latest.vsix",
"publish:pre": "vsce publish --pre-release",
Expand Down
1 change: 1 addition & 0 deletions tsconfig.test.json → tsconfig.unit.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"extends": "./tsconfig.json",
"include": ["src/**/*.spec.ts"],
// Override ./tsconfig `exclude` so that *.spec.ts files are included
"exclude": ["node_modules"]
}

0 comments on commit 16dbbed

Please sign in to comment.