palauth-iam-node/tsconfig.json
2023-12-23 12:05:21 +00:00

20 lines
392 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"noImplicitAny": true,
"removeComments": true,
"inlineSourceMap": true,
"inlineSources": true,
"declaration": true,
"esModuleInterop": true,
"outDir": "build",
"target": "es2016",
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"strict": true,
},
"include": [
"src/**/*"
]
}