f8360396ff
Prefer to replace paths at compile time
34 lines
757 B
JSON
34 lines
757 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es2015",
|
|
"noImplicitAny": false,
|
|
"sourceMap": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"importHelpers": true,
|
|
"removeComments": true,
|
|
"strictBindCallApply": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": [
|
|
"dom",
|
|
"es2015",
|
|
"es2016",
|
|
"es2017",
|
|
"es2018",
|
|
"es2019"
|
|
],
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@server/*": [ "server/*" ],
|
|
"@shared/*": [ "shared/*" ],
|
|
"@client/*": [ "client/src/*" ]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"strict": false,
|
|
"skipLibCheck": true,
|
|
"composite": true,
|
|
"declarationMap": true
|
|
}
|
|
}
|