mirror of
https://github.com/arcodange-org/mediabunny.git
synced 2026-09-27 19:03:46 +02:00
26 lines
475 B
JSON
26 lines
475 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"outDir": "./dist/modules",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"stripInternal": true,
|
|
"noEmit": false,
|
|
"moduleResolution": "nodenext",
|
|
"module": "nodenext",
|
|
"allowJs": true,
|
|
"paths": {
|
|
"mediabunny": ["../../src/index.ts"],
|
|
},
|
|
},
|
|
"include": [
|
|
"./src/**/*",
|
|
"./build/**/*",
|
|
"../../shared/**/*",
|
|
],
|
|
"references": [
|
|
{ "path": "../../src" }
|
|
]
|
|
}
|