2021-06-14 09:59:17 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"composite": true,
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"importHelpers": true,
|
|
|
|
"incremental": true,
|
2021-06-17 08:03:11 +00:00
|
|
|
"lib": [
|
|
|
|
"ESNext",
|
|
|
|
"DOM"
|
|
|
|
],
|
2021-06-14 09:59:17 +00:00
|
|
|
"module": "CommonJS",
|
|
|
|
"outDir": "dist",
|
|
|
|
"tsBuildInfoFile": "dist/.tsbuildinfo",
|
|
|
|
"removeComments": true,
|
|
|
|
"target": "ESNext",
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"strict": true,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"allowUnusedLabels": false,
|
|
|
|
"disableSizeLimit": true,
|
|
|
|
"explainFiles": false,
|
|
|
|
"extendedDiagnostics": false,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"importsNotUsedAsValues": "error",
|
|
|
|
"listEmittedFiles": false,
|
|
|
|
"listFiles": false,
|
|
|
|
"newLine": "lf",
|
|
|
|
"noEmitOnError": true,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"traceResolution": false,
|
2021-06-18 10:08:11 +00:00
|
|
|
"baseUrl": ".",
|
2021-06-17 08:03:11 +00:00
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"name": "typescript-eslint-language-service"
|
|
|
|
}
|
2021-06-18 10:08:11 +00:00
|
|
|
],
|
|
|
|
"paths": {
|
|
|
|
"@/*": [
|
|
|
|
"*"
|
|
|
|
],
|
|
|
|
"@/src": [
|
|
|
|
"src/*"
|
|
|
|
],
|
|
|
|
"@lib/*": [
|
|
|
|
"src/lib/*"
|
|
|
|
],
|
|
|
|
"@utils/*": [
|
|
|
|
"src/lib/utils/*"
|
|
|
|
]
|
|
|
|
}
|
2021-06-14 09:59:17 +00:00
|
|
|
},
|
|
|
|
"watchOptions": {
|
|
|
|
"watchFile": "useFsEvents",
|
|
|
|
"watchDirectory": "useFsEvents",
|
|
|
|
"fallbackPolling": "dynamicpriority",
|
|
|
|
"synchronousWatchDirectory": true,
|
2021-06-17 08:03:11 +00:00
|
|
|
"excludeDirectories": [
|
|
|
|
"node_modules",
|
|
|
|
"dist"
|
|
|
|
]
|
2021-06-14 09:59:17 +00:00
|
|
|
},
|
|
|
|
"include": [
|
2021-06-17 08:03:11 +00:00
|
|
|
"src/**/*.ts",
|
2021-06-14 09:59:17 +00:00
|
|
|
]
|
2021-06-17 08:03:11 +00:00
|
|
|
}
|