summaryrefslogtreecommitdiff
path: root/packages/misskey-js/tsconfig.json
blob: e0603832c7f5ed20befb17f31fbe85201c0c2f43 (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
{
	"$schema": "https://json.schemastore.org/tsconfig",
	"compilerOptions": {
		"target": "ES2022",
		"module": "nodenext",
		"moduleResolution": "nodenext",
		"declaration": true,
		"declarationMap": true,
		"sourceMap": false,
		"outDir": "./built/",
		"removeComments": true,
		"strict": true,
		"strictFunctionTypes": true,
		"strictNullChecks": true,
		"experimentalDecorators": true,
		"noImplicitReturns": true,
		"esModuleInterop": true,
		"exactOptionalPropertyTypes": true,
		"skipLibCheck": true,
		"incremental": true,
		"typeRoots": [
			"./node_modules/@types"
		],
		"lib": [
			"esnext",
			"dom"
		]
	},
	"include": [
		"src/**/*"
	],
	"exclude": [
		"node_modules",
		"test/**/*"
	]
}