sprinklers3/common/tsconfig.json

26 lines
476 B
JSON
Raw Normal View History

2017-09-08 10:16:08 -06:00
{
"compilerOptions": {
2017-10-05 09:07:07 -06:00
"experimentalDecorators": true,
"target": "es6",
2017-10-05 09:07:07 -06:00
"lib": [
"es6"
],
"types": [
"node"
],
"strict": true,
"allowJs": true,
"baseUrl": "..",
"paths": {
"@common/*": [
"./common/*"
],
"@app/*": [
"./app/*"
]
}
},
"include": [
"./**/*.ts"
]
2017-09-08 10:16:08 -06:00
}