aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 274df6724c3e5342ad6409a8e9f26494572e634a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
	"compilerOptions": {
		"outDir": "./build",
		"target": "ES2020",
		"module": "commonjs",
		"lib": ["ES2020", "dom"],
		"moduleResolution": "node",
		"resolveJsonModule": true,
		"allowSyntheticDefaultImports": true,
		"allowJs": false,
		"alwaysStrict": true,
		"sourceMap": true,
		"forceConsistentCasingInFileNames": true,
		"noFallthroughCasesInSwitch": true,
		"noImplicitReturns": true,
		"noUnusedLocals": true,
		"noUnusedParameters": true,
		"noImplicitAny": false,
		"noImplicitThis": false,
		"strictNullChecks": false,
		"experimentalDecorators": true,
		"importHelpers": true,
		"declaration": true,
		"watch": false,
		"emitDecoratorMetadata": true,
		"esModuleInterop": true,
		"removeComments": false
	},
	"include": ["src/**/*", "test/**/*"]
}