mirror of
https://github.com/arcodange-org/mediabunny.git
synced 2026-09-27 10:53:50 +02:00
18 lines
530 B
JSON
18 lines
530 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"moduleResolution": "nodenext",
|
|
"module": "NodeNext",
|
|
"composite": true,
|
|
"noEmit": false,
|
|
"paths": {
|
|
"mediabunny": ["./src/index.ts"],
|
|
"@mediabunny/ac3": ["./packages/ac3/src/index.ts"],
|
|
"@mediabunny/aac-encoder": ["./packages/aac-encoder/src/index.ts"],
|
|
},
|
|
},
|
|
"include": ["vitest.config.ts", "./test/**/*"],
|
|
"exclude": ["./test/public/**/*"],
|
|
"references": [{ "path": "./src" }, { "path": "./packages/ac3" }, { "path": "./packages/aac-encoder" }]
|
|
}
|