sprinklers3/client/tsconfig.json

33 lines
645 B
JSON
Raw Normal View History

{
2018-09-02 03:15:31 -06:00
"extends": "../tsconfig.json",
"compilerOptions": {
"sourceMap": true,
"jsx": "react",
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
],
"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
],
"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
]
}
2018-08-31 21:59:06 -06:00
},
2018-09-02 03:15:31 -06:00
"include": [
"./client/**/*.ts",
"./client/**/*.tsx"
],
2018-09-02 02:57:55 -06:00
"references": [{
"path": "../common"
}]
2017-09-07 11:20:04 -06:00
}