theatre/packages/react/tsconfig.json

20 lines
475 B
JSON
Raw Normal View History

2021-06-18 13:05:06 +02:00
{
"compilerOptions": {
"outDir": "dist",
"module": "ESNext",
"target": "ESNext",
"lib": ["es2017", "dom", "ESNext"],
"jsx": "react",
"moduleResolution": "node",
"baseUrl": ".",
"allowSyntheticDefaultImports": true,
"strict": true,
"noEmit": true,
"skipLibCheck": true,
"isolatedModules": true,
"types": ["jest"]
},
"include": ["./src/**/*"],
"exclude": ["**/node_modules", "**/.*", "./xeno", "./dist", "./.temp"]
}