nestjs-paginate/tsconfig.json

17 lines
486 B
JSON
Raw Permalink Normal View History

2020-06-26 21:25:03 +00:00
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2017",
"sourceMap": true,
"outDir": "./lib",
"baseUrl": "./",
2023-01-03 08:52:35 +00:00
"incremental": true,
"skipLibCheck": true // https://stackoverflow.com/questions/55680391/typescript-error-ts2403-subsequent-variable-declarations-must-have-the-same-typ
2020-06-26 21:25:03 +00:00
},
2020-06-28 18:01:47 +00:00
"include": ["src"]
2020-06-26 21:25:03 +00:00
}