1153ac24bf
Hello, I'm adding the whole https://items.sp-tarkov.com code base as well as the drone pipeline to deploy it. Please **double check *thoroughly* every** to ensure it matches the server architecture and configuration.
35 lines
694 B
JSON
35 lines
694 B
JSON
{
|
|
"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"
|
|
]
|
|
}
|