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

40 lines
738 B
JSON
Raw Normal View History

2023-03-02 20:51:47 -05:00
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
2023-03-02 20:51:47 -05:00
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
2023-03-02 20:51:47 -05:00
],
"module": "ESNext",
2023-03-02 20:51:47 -05:00
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
2023-03-02 20:51:47 -05:00
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"baseUrl": "./",
"paths": {
"@src/*": [
"src/*"
]
}
2023-03-02 20:51:47 -05:00
},
"include": [
"src"
],
"references": [
{
"path": "./tsconfig.node.json"
}
2023-03-02 20:51:47 -05:00
]
}