28 lines
545 B
JSON
28 lines
545 B
JSON
{
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"target": "es2017",
|
|
"lib": [
|
|
"es2017"
|
|
],
|
|
"types": [
|
|
"node"
|
|
],
|
|
"module": "commonjs",
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"baseUrl": "..",
|
|
"sourceMap": true,
|
|
"paths": {
|
|
"@common/*": [
|
|
"./common/*"
|
|
],
|
|
"@client/*": [
|
|
"./client/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"./**/*.ts"
|
|
]
|
|
} |