tsconfig.json•601 B
{
"compilerOptions": {
"rootDir": ".",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"module": "ESNext",
"target": "esnext",
"moduleResolution": "Node",
"moduleDetection": "force",
"noEmit": true,
"composite": true,
"downlevelIteration": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": ["."]
}