summaryrefslogtreecommitdiff
path: root/packages/misskey-js/generator/tsconfig.json
blob: 0de2a7fe772acbd95173b67e1b016100f52cf2d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
	"$schema": "https://json.schemastore.org/tsconfig",
	"compilerOptions": {
		"target": "ESNext",
		"module": "ESNext",
		"moduleResolution": "node16",
		"strict": true,
		"strictFunctionTypes": true,
		"strictNullChecks": true,
		"esModuleInterop": true,
		"incremental": true,
		"lib": [
			"esnext",
		]
	},
	"include": [
		"src/**/*.ts",
		"built/**/*.ts"
	],
	"exclude": []
}