typeorm-model-generator/tsconfig.json

26 lines
601 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",
2018-04-15 16:13:33 +00:00
"newLine": "LF",
"lib": [
"es2017"
2019-06-07 22:12:29 +00:00
],
"resolveJsonModule": true,
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
}