This repository has been archived on 2026-06-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
auracle-api/tsconfig.json
2021-07-18 20:04:49 +02:00

23 lines
528 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"noImplicitAny": true,
"alwaysStrict": true,
"charset": "utf-8",
"allowSyntheticDefaultImports": true,
"target": "es2017",
"sourceMap": true,
"outDir": "./dist",
"esModuleInterop": true,
"baseUrl": "./",
"incremental": true,
"types": [
"node",
"express",
"sequelize"
],
}
}