sprinklers3/client/tsconfig.json

29 lines
595 B
JSON
Raw Normal View History

{
"compilerOptions": {
"sourceMap": true,
"jsx": "react",
"experimentalDecorators": true,
"target": "es2017",
2017-09-07 11:20:04 -06:00
"lib": [
"es2017",
2017-09-08 10:16:08 -06:00
"dom",
"scripthost"
2017-09-07 11:20:04 -06:00
],
2017-09-08 10:16:08 -06:00
"module": "commonjs",
2017-09-07 11:20:04 -06:00
"types": [
2017-09-07 12:26:23 -06:00
"webpack-env",
2017-09-08 10:16:08 -06:00
"core-js",
2017-09-07 12:26:23 -06:00
"node"
2017-09-07 11:20:04 -06:00
],
"strict": true,
"baseUrl": "..",
"paths": {
2017-09-07 11:20:04 -06:00
"@common/*": [
"./common/*"
2017-09-07 11:20:04 -06:00
],
2018-08-07 21:21:26 +03:00
"@client/*": [
"./client/*"
2017-09-07 11:20:04 -06:00
]
}
2017-09-07 12:26:23 -06:00
}
2017-09-07 11:20:04 -06:00
}