overflow-webapp/tsconfig.json

25 lines
456 B
JSON
Raw Normal View History

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