mirror of
https://github.com/arcodange-org/mediabunny.git
synced 2026-09-27 02:43:48 +02:00
17 lines
421 B
JSON
17 lines
421 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"],
|
|
},
|
|
},
|
|
"include": ["vitest.config.ts", "./test/**/*"],
|
|
"exclude": ["./test/public/**/*"],
|
|
"references": [{ "path": "./src" }, { "path": "./packages/ac3" }]
|
|
}
|