mirror of
https://github.com/actions-rs/toolchain.git
synced 2024-11-14 21:46:34 +02:00
00a8bf2bdc
Closes #126
30 lines
908 B
JSON
30 lines
908 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"checkJs": false,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"newLine": "LF",
|
|
"noEmitOnError": true,
|
|
"noErrorTruncation": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"outDir": "dist",
|
|
"pretty": true,
|
|
"removeComments": true,
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"suppressImplicitAnyIndexErrors": false,
|
|
"target": "es2018",
|
|
"declaration": false,
|
|
"sourceMap": false,
|
|
"typeRoots": ["./types", "./node_modules/@types"]
|
|
},
|
|
"include": ["src", "__tests__"]
|
|
}
|