b8b1c0d056
* Add tsconfig.json for common * Prefer `const` over `let` over `var` * Kill dead code * Fix some trivial Typescript issues * Turn on Typescript linting in common except for no-explicit-any * Correctly specify tsconfig dir name in functions eslintrc
13 lines
229 B
JSON
13 lines
229 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "../",
|
|
"moduleResolution": "node",
|
|
"noImplicitReturns": true,
|
|
"outDir": "lib",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "es2017"
|
|
},
|
|
"include": ["**/*.ts"]
|
|
}
|