mirror of
https://github.com/ApfelTeeSaft/LiveSplitOne.git
synced 2026-08-28 19:20:01 +00:00
23 lines
553 B
JSON
23 lines
553 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"sourceMap": false,
|
|
"noImplicitAny": true,
|
|
"module": "commonjs",
|
|
"target": "es2017",
|
|
"jsx": "react",
|
|
"strictNullChecks": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"alwaysStrict": true,
|
|
"strictFunctionTypes": true,
|
|
"strict": true
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
]
|
|
}
|