Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
argonbot/tsconfig.json

94 lines
2 KiB
JSON
Raw Normal View History

2021-06-14 09:59:17 +00:00
{
"compilerOptions": {
2021-06-21 15:28:16 +00:00
"allowJs": true,
"checkJs": true,
2021-06-14 09:59:17 +00:00
"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-29 14:46:16 +00:00
"sourceMap": true,
"inlineSourceMap": true,
"inlineSources": true,
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/*"
],
"@structures/*": [
"src/lib/structures/*"
2021-06-18 10:08:11 +00:00
]
}
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-21 22:31:29 +00:00
"*.json"
2021-06-14 09:59:17 +00:00
]
2021-06-21 15:28:16 +00:00
}