{ "compilerOptions": { /* Basic Options */ "target": "ESNEXT", "module": "commonjs", // "lib": [], "allowJs": false, // "checkJs": true, // "jsx": "preserve", "declaration": true, "declarationMap": true, "sourceMap": true, // "outFile": "./", "outDir": "./dist", // "rootDir": "./", // "composite": true, "removeComments": true, // "noEmit": true, "importHelpers": true, // "downlevelIteration": true, // "isolatedModules": true, "strict": true, "noImplicitAny": true, "strictNullChecks": true, "strictFunctionTypes": true, "strictPropertyInitialization": true, "noImplicitThis": true, "alwaysStrict": true, "noUnusedLocals": true, "noUnusedParameters": true, "noImplicitReturns": true, "noFallthroughCasesInSwitch": true, "moduleResolution": "node", // "baseUrl": "./", // "paths": {}, // "rootDirs": [], // "typeRoots": [], // "types": [], // "allowSyntheticDefaultImports": true, "esModuleInterop": true // "preserveSymlinks": true, // "sourceRoot": "", // "mapRoot": "", // "inlineSourceMap": true, // "inlineSources": true, // "experimentalDecorators": true, // "emitDecoratorMetadata": true, } }