palauth-iam-node/tsconfig.json

20 lines
392 B
JSON
Raw Normal View History

2023-12-23 12:05:21 +00:00
{
"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/**/*"
]
}