-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathtsconfig.json
More file actions
21 lines (21 loc) · 599 Bytes
/
tsconfig.json
File metadata and controls
21 lines (21 loc) · 599 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"module": "NodeNext",
"esModuleInterop": true,
"target": "esnext",
"lib": ["esnext"],
"strict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"declaration": true,
"declarationMap": true,
"outDir": "dist",
"rootDir": "lib",
"inlineSourceMap": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"composite": true
},
"include": ["./lib/**/*", "./lib/util/settings.schema.json"]
}