Invalid JSON:Expected property name or '}' in JSONat line 2, column 3
| { | |
| // Visit https://aka.ms/tsconfig to read more about this file | |
| "compilerOptions": { | |
| // File Layout | |
| // "rootDir": "./src", | |
| // "outDir": "./dist", | |
| // Environment Settings | |
| // See also https://aka.ms/tsconfig/module | |
| "module": "nodenext", | |
| "target": "esnext", | |
| // For nodejs: | |
| "lib": ["esnext"], | |
| "types": ["node"], | |
| // Other Outputs | |
| "sourceMap": true, | |
| "declaration": true, | |
| "declarationMap": true, | |
| // Stricter Typechecking Options | |
| "noUncheckedIndexedAccess": true, | |
| "exactOptionalPropertyTypes": true, | |
| // Recommended Options | |
| "strict": true, | |
| "verbatimModuleSyntax": false, | |
| "isolatedModules": true, | |
| "noUncheckedSideEffectImports": true, | |
| "moduleDetection": "force", | |
| "skipLibCheck": true, | |
| "noEmit": true, | |
| "pretty": true | |
| } | |
| } | |