login-action/tsconfig.json

15 lines
295 B
JSON
Raw Normal View History

2020-08-15 14:45:36 +02:00
{
"compilerOptions": {
"target": "esnext",
2020-08-15 14:45:36 +02:00
"module": "commonjs",
"newLine": "lf",
"outDir": "./lib",
"rootDir": "./src",
"strict": true,
"noImplicitAny": false,
"esModuleInterop": true,
"sourceMap": true
},
"exclude": ["node_modules", "**/*.test.ts"]
}