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