commons-typescript/tsconfig.json

24 lines
421 B
JSON
Raw Normal View History

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