auth-server-helper/tsconfig.json

15 lines
301 B
JSON
Raw Normal View History

2020-12-03 09:54:27 +01:00
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"outDir": "./dist",
"rootDir": "./lib",
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
2020-12-28 14:53:14 +01:00
"declaration": true,
"sourceMap": true
2021-01-05 17:06:35 +01:00
},
"exclude": ["test/**/*.ts"]
2020-12-03 09:54:27 +01:00
}