react-zeroconfig
Version:
39 lines (36 loc) • 940 B
JSON
{
"compilerOptions": {
// language setting
// -------------------------------
"jsx": "react",
"experimentalDecorators": true,
"allowJs": true,
"downlevelIteration": true,
"importHelpers": true,
"resolveJsonModule": true,
// import * as module from 'module' -> import module from 'module'
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
// strict
// -------------------------------
"alwaysStrict": true,
"strictNullChecks": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
// export setting
// -------------------------------
"module": "esnext",
"target": "es5",
"moduleResolution": "node",
"skipLibCheck": true,
"sourceMap": true,
// lib
// -------------------------------
"lib": [
"dom",
"dom.iterable",
"esnext"
]
}
}