theatre/examples/dom-cra/tsconfig.json

15 lines
327 B
JSON
Raw Normal View History

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "dist",
"lib": ["ESNext", "DOM"],
"rootDir": "src",
"types": ["jest", "node"],
"emitDeclarationOnly": true,
"composite": true,
"checkJs": true
},
"references": [{"path": "../../theatre"}],
"include": ["./src/**/*"]
}