summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 2a94c31c2cf23a35ed91e30e19c2fbe90df61f85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "compilerOptions": {
		"target": "ES2020",
		"lib": ["ESNext", "DOM"],
    "module": "ESNext",
		"skipLibCheck": true,

    "moduleResolution": "bundler",
		"allowImportingTsExtensions": true,
		"resolveJsonModule": true,
		"isolatedModules": true,
		"noEmit": true,
		"jsx": "react-jsx",
		"jsxImportSource": "preact",
		"allowJs": false,

		"strict": true,
		"noUnusedLocals": true,
		"noUnusedParameters": true
  },
	"include": ["src"]
}