You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
595 B
29 lines
595 B
8 years ago
|
{
|
||
|
"compilerOptions": {
|
||
|
"sourceMap": true,
|
||
|
"jsx": "react",
|
||
|
"experimentalDecorators": true,
|
||
7 years ago
|
"target": "es2017",
|
||
7 years ago
|
"lib": [
|
||
7 years ago
|
"es2017",
|
||
7 years ago
|
"dom",
|
||
|
"scripthost"
|
||
7 years ago
|
],
|
||
7 years ago
|
"module": "commonjs",
|
||
7 years ago
|
"types": [
|
||
7 years ago
|
"webpack-env",
|
||
7 years ago
|
"core-js",
|
||
7 years ago
|
"node"
|
||
7 years ago
|
],
|
||
7 years ago
|
"strict": true,
|
||
7 years ago
|
"baseUrl": "..",
|
||
7 years ago
|
"paths": {
|
||
7 years ago
|
"@common/*": [
|
||
7 years ago
|
"./common/*"
|
||
7 years ago
|
],
|
||
7 years ago
|
"@client/*": [
|
||
|
"./client/*"
|
||
7 years ago
|
]
|
||
7 years ago
|
}
|
||
7 years ago
|
}
|
||
7 years ago
|
}
|