mirror of
https://github.com/dog-18/dog18.git
synced 2026-01-11 06:38:00 -05:00
30 lines
741 B
JSON
30 lines
741 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"esModuleInterop": true,
|
|
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"importHelpers": true,
|
|
"moduleDetection": "force",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"noUncheckedIndexedAccess": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"strict": true,
|
|
|
|
"skipLibCheck": true,
|
|
"skipDefaultLibCheck": true
|
|
}
|
|
}
|