Skip to content

Commit

Permalink
[communication] Update @Azure/communication-chat to ESM/vitest
Browse files Browse the repository at this point in the history
  • Loading branch information
mpodwysocki committed Nov 6, 2024
1 parent 48fb7b9 commit 25b3c63
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 19 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,7 @@
{
"extends": "./.tshy/build.json",
"include": [
"./src/**/*.ts",
"./src/**/*.mts",
"./test/**/*.spec.ts",
"./test/**/*.mts"
],
"exclude": [
"./test/**/node/**/*.ts"
],
"include": ["./src/**/*.ts", "./src/**/*.mts", "./test/**/*.spec.ts", "./test/**/*.mts"],
"exclude": ["./test/**/node/**/*.ts"],
"compilerOptions": {
"outDir": "./dist-test/browser",
"rootDir": ".",
Expand Down
12 changes: 2 additions & 10 deletions sdk/communication/communication-chat/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,11 @@
"extends": "../../../tsconfig",
"compilerOptions": {
"paths": {
"@azure/communication-chat": [
"./src/index"
]
"@azure/communication-chat": ["./src/index"]
},
"module": "NodeNext",
"moduleResolution": "NodeNext",
"rootDir": "."
},
"include": [
"src/**/*.ts",
"src/**/*.mts",
"src/**/*.cts",
"samples-dev/**/*.ts",
"test/**/*.ts"
]
"include": ["src/**/*.ts", "src/**/*.mts", "src/**/*.cts", "samples-dev/**/*.ts", "test/**/*.ts"]
}

0 comments on commit 25b3c63

Please sign in to comment.