nestjs-paginate/tsconfig.json

18 lines
407 B
JSON
Raw 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": "./",
"typeRoots": ["node_modules/@types"],
"incremental": true
},
"include": ["src"],
"exclude": ["src/__test__/*"]
}