forked from Roblox/rhysd-github-action-benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
36 lines (36 loc) · 808 Bytes
/
tsconfig.json
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
{
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"lib": [
"esnext"
],
"preserveConstEnums": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"strict": true,
"target": "es2019",
"sourceMap": true,
"esModuleInterop": true,
"resolveJsonModule": true
},
"files": [
"src/index.ts",
"src/config.ts",
"src/extract.ts",
"src/git.ts",
"src/write.ts",
"src/default_index_html.ts",
"test/extract.ts",
"test/config.ts",
"test/git.ts",
"test/write.ts",
"test/default_index_html.ts",
"scripts/ci_validate_modification.ts"
]
}