tsconfig.json•905 B
{
"$schema": "http://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "ES2021",
"module": "commonjs",
"moduleResolution": "node",
"lib": ["ESNext"],
"jsx": "react-jsx",
"jsxImportSource": "react",
"newLine": "lf",
"strict": true,
"declaration": true,
"declarationMap": true,
"erasableSyntaxOnly": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": false,
"experimentalDecorators": true,
"strictPropertyInitialization": true,
"allowJs": true,
"resolveJsonModule": true,
"noEmit": true,
"isolatedModules": true
},
"exclude": ["node_modules", "**/dist/*"]
}