UNPKG

@aomi/webapp-cli

Version:

a web app cli

67 lines (58 loc) 1.57 kB
{ "compilerOptions": { /* Basic Options */ "module": "esnext", "target": "esnext", "lib": [ "dom", "es2018" ], "allowJs": true, // "checkJs": false "jsx": "react", // "declaration": true // "declarationMap": true "outDir": "build/dist", "removeComments": true, "noEmit": true, // "importHelpers": true, // "downlevelIteration": true, // "isolatedModules": true, /* Strict Type-Checking Options */ // "strict": true, "noImplicitAny": false, "strictNullChecks": true, // "strictFunctionTypes": true // "strictPropertyInitialization": true, "noImplicitThis": true, // "alwaysStrict": true, /* Additional Checks */ "noUnusedLocals": true, "noUnusedParameters": false, "noImplicitReturns": true, "noFallthroughCasesInSwitch": true, /* Module Resolution Options */ "moduleResolution": "node", "baseUrl": "./", // "rootDirs": [], // "typeRoots": [], // "types": [] "allowSyntheticDefaultImports": true, "esModuleInterop": true, // "preserveSymlinks": true, /* Source Map Options */ // "sourceRoot": "", // "mapRoot": "" "sourceMap": true, // "inlineSourceMap": true, // "inlineSources": true, /* Experimental Options */ "experimentalDecorators": true, // "emitDecoratorMetadata": true "suppressImplicitAnyIndexErrors": true, "forceConsistentCasingInFileNames": true }, "include": [ "src" ] }