typeorm-model-generator/tsconfig.json

23 lines
542 B
JSON
Raw Normal View History

2017-03-23 21:38:12 +00:00
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"noImplicitAny": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"declaration": false,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"stripInternal": true,
"strictNullChecks": true,
2017-07-20 19:39:08 +00:00
"moduleResolution": "node",
2017-09-18 19:01:27 +00:00
"outDir": "dist",
"newLine": "LF"
2017-12-31 16:28:41 +00:00
},
"include": [
2017-05-03 17:12:25 +00:00
"src",
"test"
2017-04-02 22:28:38 +00:00
]
2017-12-31 16:28:41 +00:00
}