tsconfig.json 588 B raw
1
{
2
	"compilerOptions": {
3
		"lib": ["ESNext"],
4
		"target": "ESNext",
5
		"module": "Preserve",
6
		"moduleDetection": "force",
7
		"jsx": "react-jsx",
8
		"allowJs": true,
9
		"moduleResolution": "bundler",
10
		"allowImportingTsExtensions": true,
11
		"verbatimModuleSyntax": true,
12
		"noEmit": true,
13
		"strict": true,
14
		"skipLibCheck": true,
15
		"noFallthroughCasesInSwitch": true,
16
		"noUncheckedIndexedAccess": true,
17
		"noImplicitOverride": true,
18
		"noUnusedLocals": false,
19
		"noUnusedParameters": false,
20
		"noPropertyAccessFromIndexSignature": false
21
	},
22
	"references": [
23
		{ "path": "packages/cli" }
24
	]
25
}