| 1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "compilerOptions": {
- "target": "es2019",
- "lib": ["es2020"],
- "module": "commonjs",
- "moduleResolution": "node",
- "esModuleInterop": true,
- "rootDir": "./",
- "baseUrl": "./",
- "paths": {
- "~/*": ["*"]
- },
- "declaration": true,
- "declarationMap": true,
- "outDir": "dist",
- "pretty": true,
- "sourceMap": true,
- "resolveJsonModule": true,
- "forceConsistentCasingInFileNames": true,
- "strict": true,
- "noImplicitAny": true,
- "strictNullChecks": true,
- "strictFunctionTypes": true,
- "strictBindCallApply": true,
- "strictPropertyInitialization": true,
- "noImplicitThis": true,
- "alwaysStrict": true,
- "exactOptionalPropertyTypes": true,
- "noUncheckedIndexedAccess": true,
- "noImplicitOverride": true,
- "noPropertyAccessFromIndexSignature": true,
- "skipLibCheck": true
- }
- }
|