login-action/tsconfig.json

18 lines
374 B
JSON
Raw Normal View History

2020-08-15 12:45:36 +00:00
{
"compilerOptions": {
"module": "nodenext",
"moduleResolution": "nodenext",
"esModuleInterop": true,
2020-08-15 12:45:36 +00:00
"newLine": "lf",
"outDir": "./lib",
"rootDir": "./src",
"forceConsistentCasingInFileNames": true,
2020-08-15 12:45:36 +00:00
"noImplicitAny": false,
"resolveJsonModule": true,
"useUnknownInCatchVariables": false,
2020-08-15 12:45:36 +00:00
},
"include": [
"src/**/*.ts"
]
2020-08-15 12:45:36 +00:00
}