commons-typescript/tsconfig.json

25 lines
456 B
JSON
Raw Normal View History

2018-04-24 12:20:01 +00:00
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./src",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"newLine": "LF",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
"types": [
"reflect-metadata",
],
"lib": [
"es2017",
"dom"
]
}
}