-
-
Notifications
You must be signed in to change notification settings - Fork 184
Expand file tree
/
Copy pathtsconfig.json
More file actions
22 lines (20 loc) · 499 Bytes
/
tsconfig.json
File metadata and controls
22 lines (20 loc) · 499 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"compilerOptions": {
"target": "es2019",
"lib": ["es2019"],
"types": ["node"],
"module": "commonjs",
"experimentalDecorators": true,
"rootDir": "src",
"outDir": "dist",
"declaration": true,
"sourceMap": true,
"newLine": "LF",
"stripInternal": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true
},
"include": ["src"],
"exclude": ["src/lualib"]
}