seedling/source/__/.tsconfig.json
Roman Jaroš 6ea4c9022d Replace HapiJs with NestJs as API framework
Change-Id: I54dc6c5f6377358e4f6614378fbb253b0c7841a9
2023-09-14 20:18:20 +02:00

24 lines
No EOL
436 B
JSON

{
"compilerOptions": {
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"sourceMap": true,
"esModuleInterop": true,
"allowJs": true,
"outDir": "build",
"module": "commonjs",
"target": "es6",
"lib": [
"es6",
"dom"
],
},
"exclude": [
"./node_modules",
"./src/**/__tests__/*.tsx"
]
}