1
0
mirror of https://github.com/benjlevesque/short-sha.git synced 2025-12-06 09:47:49 +01:00
Files
short-sha/tsconfig.json
Benjamin Levesque 5da834993f Remove "any"
2022-10-28 15:04:23 +02:00

14 lines
288 B
JSON

{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"outDir": "./lib",
"rootDir": "./src",
"strict": true,
"noImplicitAny": true,
"esModuleInterop": true,
"useUnknownInCatchVariables": false
},
"exclude": ["node_modules", "**/*.test.ts"]
}