summaryrefslogtreecommitdiff
path: root/preact/jsconfig.json
blob: cd6a2a5b3cb2abca9006f2f69cfccffff8556427 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
	"compilerOptions": {
		"baseUrl": ".",
		"checkJs": true,
		"jsx": "react",
		"lib": ["dom", "es5"],
		"moduleResolution": "node",
		"paths": {
			"preact": ["."],
			"preact/*": ["./*"]
		},
		"reactNamespace": "createElement",
		"target": "es5"
	},
	"exclude": ["node_modules", "dist", "demo"]
}