mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
20 lines
464 B
JSON
20 lines
464 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"declaration": false,
|
|
"noImplicitAny": false,
|
|
"noUnusedLocals": false,
|
|
"removeComments": true,
|
|
"noLib": false,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"target": "es6",
|
|
"sourceMap": true,
|
|
"allowJs": true,
|
|
"outDir": "dist",
|
|
"lib": ["es7"]
|
|
},
|
|
"include": ["packages/**/*", "integration/**/*"],
|
|
"exclude": ["node_modules", "**/*.spec.ts"]
|
|
}
|