| { |
| "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 |
| } |
| } |
|
|