cra-structure-cli
Version:
A CLI with bootstrap create-react-app. Initiate react project. V2.0 supported typescript.
29 lines (28 loc) • 599 B
JSON
{
"compilerOptions": {
"noImplicitAny": false,
"jsx": "preserve",
"allowJs": true,
"allowSyntheticDefaultImports": true,
"checkJs": true,
"removeComments": true,
"target": "es5",
"skipLibCheck": true,
"esModuleInterop": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"lib": [
"dom",
"dom.iterable",
"esnext"
]
},
"include": [
"src"
]
}