summaryrefslogtreecommitdiff
path: root/packages/frontend-shared/tsconfig.json
blob: 8f76763e10fa34ae75026790f8aa41872686755c (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
31
32
33
34
35
36
37
38
39
40
41
42
43
{
	"$schema": "https://json.schemastore.org/tsconfig",
	"compilerOptions": {
		"target": "ES2022",
		"module": "nodenext",
		"moduleResolution": "nodenext",
		"declaration": true,
		"declarationMap": true,
		"sourceMap": false,
		"outDir": "./js-built/",
		"removeComments": true,
		"resolveJsonModule": true,
		"strict": true,
		"strictFunctionTypes": true,
		"strictNullChecks": true,
		"experimentalDecorators": true,
		"noImplicitReturns": true,
		"esModuleInterop": true,
		"verbatimModuleSyntax": true,
		"skipLibCheck": true,
		"baseUrl": ".",
		"paths": {
			"@/*": ["./*"],
			"@@/*": ["./*"]
		},
		"typeRoots": [
			"./@types",
			"./node_modules/@types"
		],
		"lib": [
			"esnext",
			"dom"
		]
	},
	"include": [
		"@types/**/*.ts",
		"js/**/*"
	],
	"exclude": [
		"node_modules",
		"test/**/*"
	]
}