forked from Vanilagy/mediabunny
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.vitest.json
More file actions
27 lines (27 loc) · 911 Bytes
/
Copy pathtsconfig.vitest.json
File metadata and controls
27 lines (27 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"extends": "./tsconfig.json",
"compilerOptions": {
"moduleResolution": "nodenext",
"module": "NodeNext",
"composite": true,
"noEmit": false,
"paths": {
//"mediabunny": ["./src/index.ts"], So that the direct source imports are preferred
"@mediabunny/ac3": ["./packages/ac3/src/index.ts"],
"@mediabunny/aac-encoder": ["./packages/aac-encoder/src/index.ts"],
"@mediabunny/flac-encoder": ["./packages/flac-encoder/src/index.ts"],
"@mediabunny/mp3-encoder": ["./packages/mp3-encoder/src/index.ts"],
"@mediabunny/server": ["./packages/server/src/index.ts"],
},
},
"include": ["vitest.config.ts", "./test/**/*"],
"exclude": ["./test/public/**/*"],
"references": [
{ "path": "./src" },
{ "path": "./packages/ac3" },
{ "path": "./packages/aac-encoder" },
{ "path": "./packages/flac-encoder" },
{ "path": "./packages/mp3-encoder" },
{ "path": "./packages/server" },
]
}