sprinklers3/client/tsconfig.json

34 lines
653 B
JSON
Raw Permalink 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",
2019-07-20 18:05:58 -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": [
2019-07-20 18:05:58 -06:00
"./**/*.ts",
"./**/*.tsx"
2018-09-02 03:15:31 -06:00
],
2019-07-20 11:33:30 -06:00
"exclude": [],
2018-09-02 02:57:55 -06:00
"references": [{
"path": "../common"
}]
2017-09-07 11:20:04 -06:00
}