aboutsummaryrefslogtreecommitdiffstats
path: root/jsconfig.json
blob: fed7df94fcf5e7f5a7eec6a3b18945e3080cf134 (plain) (blame)
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
{
	"compilerOptions": {
		"allowJs": true,
		"baseUrl": ".",
		"checkJs": true,
		"lib": ["ESNext", "Dom", "ES2023", "ES7"],
		"module": "ESNext",
		"noFallthroughCasesInSwitch": true,
		"noImplicitAny": true,
		"noImplicitReturns": true,
		"noUnusedLocals": true,
		"noUnusedParameters": true,
		"paths": {
			"components": ["./app/components.js"],
			"dom": ["./app/dom.js"],
			"geom": ["./app/geometry.js"],
			"main": ["./app/main.js"],
			"models": ["./app/models.js"],
			"svg": ["./app/svg.js"]
		},
		"rootDirs": ["."],
		"skipLibCheck": false,
		"sourceMap": true,
		"strict": true,
		"strictBindCallApply": true,
		"strictBuiltinIteratorReturn": true,
		"strictFunctionTypes": true,
		"strictNullChecks": true,
		"strictPropertyInitialization": true,
		"target": "esnext"
	},
	"html.format.enable": false,
	"include": ["app/*.js"],
	"javascript.format.enable": false,
	"json.format.enable": false,
	"typescript.format.enable": false
}