ae8be59366
This starts a new workspace at `packages/benchmarks` where future benchmarks are going to sit. For now, it only contains a basic profile of a `sequence.play()` setup. It also removes all uses of `AbstractDerivation.map()/flatMap()` and uses prisms instead.
18 lines
415 B
JSON
18 lines
415 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"lib": ["ESNext", "DOM"],
|
|
"rootDir": ".",
|
|
"types": ["jest", "node"],
|
|
"emitDeclarationOnly": false,
|
|
"composite": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"references": [
|
|
{"path": "../../theatre"},
|
|
{"path": "../dataverse"},
|
|
{"path": "../r3f"}
|
|
],
|
|
"include": ["./src/**/*", "./devEnv/**/*"]
|
|
}
|