aboutsummaryrefslogtreecommitdiff
path: root/apps/storybook/tsconfig.json
blob: da3cfcced7f4aef94ea36b4a6bdc5c0c2ca217b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
	"compilerOptions": {
		"target": "ESNext",
		"module": "ESNext",
		"moduleResolution": "Node",
		"lib": ["DOM", "DOM.Iterable", "ESNext"],
		"useDefineForClassFields": true,
		"allowJs": true,
		"skipLibCheck": true,
		"esModuleInterop": false,
		"allowSyntheticDefaultImports": true,
		"strict": true,
		"forceConsistentCasingInFileNames": true,
		"resolveJsonModule": true,
		"isolatedModules": true,
		"noEmit": true,
		"jsx": "react-jsx"
	}
}