2021-11-17 00:45:48 +00:00
|
|
|
{
|
2023-02-15 01:09:01 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es2018",
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"noEmitOnError": true,
|
|
|
|
"lib": ["es2017", "dom"],
|
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": false,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": false,
|
|
|
|
"importHelpers": true,
|
|
|
|
"outDir": "dist",
|
|
|
|
"sourceMap": true,
|
|
|
|
"inlineSources": true,
|
|
|
|
"baseUrl": "./",
|
|
|
|
"rootDir": "./",
|
|
|
|
"declaration": true,
|
|
|
|
"incremental": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["./src/*"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"include": ["./src/**/*"]
|
2021-11-17 00:45:48 +00:00
|
|
|
}
|