theatre/examples/basic-dom/tsconfig.json

14 lines
320 B
JSON
Raw Normal View History

2021-06-18 13:05:06 +02:00
{
2021-09-22 09:38:12 +02:00
"extends": "../../tsconfig.base.json",
2021-06-18 13:05:06 +02:00
"compilerOptions": {
"esModuleInterop": true,
"jsx": "react",
"skipDefaultLibCheck": true,
2021-09-22 09:30:42 +02:00
"skipLibCheck": true,
"composite": true,
"noEmit": true
2021-06-18 13:05:06 +02:00
},
2021-09-22 09:38:12 +02:00
"files": ["index.tsx", "Scene.tsx", "useDrag.ts"],
"references": [{"path": "../../theatre"}]
2021-06-18 13:05:06 +02:00
}