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.
 
 
 
 
 
 

33 lines
645 B

{
"extends": "../tsconfig.json",
"compilerOptions": {
"sourceMap": true,
"jsx": "react",
"lib": [
"es2017",
"dom",
"scripthost"
],
"types": [
"webpack-env",
"core-js",
"node"
],
"baseUrl": "..",
"paths": {
"@common/*": [
"./common/*"
],
"@client/*": [
"./client/*"
]
}
},
"include": [
"./client/**/*.ts",
"./client/**/*.tsx"
],
"references": [{
"path": "../common"
}]
}