palauth-iam-node/tsconfig.json

21 lines
428 B
JSON
Raw Normal View History

2023-12-23 12:05:21 +00:00
{
"compilerOptions": {
2023-12-23 12:55:51 +00:00
"module": "NodeNext",
"moduleResolution": "NodeNext",
2023-12-23 12:05:21 +00:00
"noImplicitAny": true,
"removeComments": true,
"inlineSourceMap": true,
"inlineSources": true,
"declaration": true,
"esModuleInterop": true,
"outDir": "build",
"target": "es2016",
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"strict": true,
},
"include": [
"src/**/*"
]
}