23 lines
528 B
JSON
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"
|
|
],
|
|
}
|
|
}
|