Files
Fulfillment-Frontend/tsconfig.json
2024-09-27 04:47:04 +03:00

29 lines
770 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable", "ESNext"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": false,
"allowSyntheticDefaultImports": true
},
"include": ["src"],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}