0
0
mirror of https://github.com/sp-tarkov/db-website.git synced 2025-02-08 07:50:46 -05:00
db-website/frontend/tsconfig.json

35 lines
694 B
JSON
Raw Normal View History

2023-03-02 20:51:47 -05:00
{
"compilerOptions": {
"target": "es6",
"lib": [
"es6",
"dom",
"dom.iterable",
"esnext"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"sourceMap": true,
"jsx": "react-jsx",
"types": [
"cypress"
]
},
"include": [
"src"
]
}