25 lines
609 B
JSON
25 lines
609 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"useDefineForClassFields": true,
|
||
|
|
"module": "ESNext",
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"allowImportingTsExtensions": true,
|
||
|
|
"verbatimModuleSyntax": false,
|
||
|
|
"moduleDetection": "force",
|
||
|
|
"noEmit": true,
|
||
|
|
"strict": false,
|
||
|
|
"noUnusedLocals": false,
|
||
|
|
"noUnusedParameters": false,
|
||
|
|
"noFallthroughCasesInSwitch": false,
|
||
|
|
"noUncheckedSideEffectImports": false,
|
||
|
|
"forceConsistentCasingInFileNames": false,
|
||
|
|
"baseUrl": "./",
|
||
|
|
"paths": {
|
||
|
|
"@shared/*": [
|
||
|
|
"./shared/*"
|
||
|
|
]
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|