blob: e60eb8e5e5b74d5601a232cc7767a435946871b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{
"compilerOptions": {
"module": "commonjs",
"target": "es2018",
"outDir": "out",
"lib": [
"es2019"
],
"sourceMap": true,
"rootDir": "src",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"newLine": "LF"
},
"exclude": [
"node_modules"
]
}
|