mirror of
https://github.com/kou029w/_.git
synced 2025-01-30 13:58:08 +00:00
112 lines
3.2 KiB
JSON
112 lines
3.2 KiB
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
/* Visit https://aka.ms/tsconfig to read more about this file */
|
|
|
|
/* Projects */
|
|
"incremental": true,
|
|
// "composite": true,
|
|
// "tsBuildInfoFile": "./.tsbuildinfo",
|
|
// "disableSourceOfProjectReferenceRedirect": true,
|
|
// "disableSolutionSearching": true,
|
|
// "disableReferencedProjectLoad": true,
|
|
|
|
/* Language and Environment */
|
|
"target": "ESNext",
|
|
// "lib": [],
|
|
// "jsx": "preserve",
|
|
// "experimentalDecorators": true,
|
|
// "emitDecoratorMetadata": true,
|
|
// "jsxFactory": "",
|
|
// "jsxFragmentFactory": "",
|
|
// "jsxImportSource": "",
|
|
// "reactNamespace": "",
|
|
// "noLib": true,
|
|
// "useDefineForClassFields": true,
|
|
// "moduleDetection": "auto", ,
|
|
"preserveWatchOutput": true,
|
|
|
|
/* Modules */
|
|
"module": "CommonJS",
|
|
// "rootDir": "./",
|
|
"moduleResolution": "Node10",
|
|
// "baseUrl": "./",
|
|
// "paths": {},
|
|
// "rootDirs": [],
|
|
// "typeRoots": [],
|
|
// "types": [],
|
|
// "allowUmdGlobalAccess": true,
|
|
// "moduleSuffixes": [],
|
|
// "allowImportingTsExtensions": true,
|
|
// "resolvePackageJsonExports": true,
|
|
// "resolvePackageJsonImports": true,
|
|
// "customConditions": [],
|
|
// "resolveJsonModule": true,
|
|
// "allowArbitraryExtensions": true,
|
|
// "noResolve": true,
|
|
|
|
/* JavaScript Support */
|
|
// "allowJs": true,
|
|
// "checkJs": true,
|
|
// "maxNodeModuleJsDepth": 1,
|
|
|
|
/* Emit */
|
|
// "declaration": true,
|
|
// "declarationMap": true,
|
|
// "emitDeclarationOnly": true,
|
|
"sourceMap": true,
|
|
// "inlineSourceMap": true,
|
|
// "outFile": "./",
|
|
"outDir": "./dist",
|
|
// "removeComments": true,
|
|
// "noEmit": true,
|
|
"importHelpers": true,
|
|
// "importsNotUsedAsValues": "remove",
|
|
// "downlevelIteration": true,
|
|
// "sourceRoot": "",
|
|
// "mapRoot": "",
|
|
// "inlineSources": true,
|
|
// "emitBOM": true,
|
|
// "newLine": "crlf",
|
|
// "stripInternal": true,
|
|
// "noEmitHelpers": true,
|
|
// "noEmitOnError": true,
|
|
// "preserveConstEnums": true,
|
|
// "declarationDir": "./",
|
|
// "preserveValueImports": true,
|
|
|
|
/* Interop Constraints */
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"preserveSymlinks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
/* Type Checking */
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"strictPropertyInitialization": true,
|
|
"noImplicitThis": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"alwaysStrict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
// "noPropertyAccessFromIndexSignature": true,
|
|
// "allowUnusedLabels": true,
|
|
// "allowUnreachableCode": true,
|
|
|
|
/* Completeness */
|
|
"skipDefaultLibCheck": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src", "test"]
|
|
}
|