sprinklers3/common/tsconfig.json

28 lines
545 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": "es2017",
2017-10-05 09:07:07 -06:00
"lib": [
"es2017"
2017-10-05 09:07:07 -06:00
],
"types": [
"node"
],
"module": "commonjs",
2017-10-05 09:07:07 -06:00
"strict": true,
"allowJs": true,
"baseUrl": "..",
2018-06-27 00:59:58 -06:00
"sourceMap": true,
2017-10-05 09:07:07 -06:00
"paths": {
"@common/*": [
"./common/*"
],
2018-08-07 21:21:26 +03:00
"@client/*": [
"./client/*"
2017-10-05 09:07:07 -06:00
]
}
},
"include": [
"./**/*.ts"
]
2017-09-08 10:16:08 -06:00
}