nestjs-telegraf/tsconfig.json

19 lines
425 B
JSON
Raw Normal View History

2019-02-28 11:29:26 +03:00
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"noImplicitAny": false,
2020-08-14 14:01:39 +03:00
"removeComments": false,
2019-02-28 11:29:26 +03:00
"noLib": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es2017",
"sourceMap": false,
"rootDir": "./lib",
2019-02-28 11:29:26 +03:00
"outDir": "./dist",
"skipLibCheck": true
2019-02-28 11:29:26 +03:00
},
"include": ["lib/**/*"],
"exclude": ["node_modules", "**/*.spec.ts"]
2019-02-28 11:29:26 +03:00
}