@buka/nestjs-type-helper
Version:
An easy to use nestjs config module
50 lines (49 loc) • 907 B
JSON
{
"compilerOptions": {
"strict": true,
"esModuleInterop": true,
"noImplicitAny": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"declaration": true,
"noEmitOnError": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"moduleResolution": "node",
"module": "ESNext",
"target": "ESNext",
"baseUrl": "./",
"rootDir": "./",
"paths": {
"~/*": [
"src/*"
],
"~~/*": [
"./*"
]
},
"plugins": [
{
"transform": "typescript-transform-paths"
},
{
"transform": "typescript-transform-paths",
"afterDeclarations": true
}
]
},
"exclude": [
"node_modules",
"dist"
],
"include": [
"**/*.ts",
".eslintrc.cjs",
"jest.config.ts"
],
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
}
}