077e8dcf81
Add author input Fix default committer and author for GitHub Actions bot Replace GITHUB_PAT env var with GH_PAT (#53) Replace committer_name and committer_email inputs with committer
18 lines
324 B
JSON
18 lines
324 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"newLine": "lf",
|
|
"outDir": "./lib",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"esModuleInterop": true,
|
|
"sourceMap": true
|
|
},
|
|
"exclude": ["node_modules", "**/*.test.ts"]
|
|
}
|