mirror of
https://github.com/meshtastic/web.git
synced 2026-02-15 02:01:39 -05:00
34 lines
921 B
JSON
34 lines
921 B
JSON
{
|
|
"include": ["src", "types"],
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"allowJs": false,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@app/*": ["./src/*"],
|
|
"@pages/*": ["./src/pages/*"],
|
|
"@components/*": ["./src/components/*"],
|
|
"@hooks/*": ["./src/hooks/*"],
|
|
"@core/*": ["./src/core/*"]
|
|
},
|
|
"importHelpers": true,
|
|
"removeComments": true,
|
|
"strictNullChecks": true,
|
|
"types": ["vite/client", "vite-plugin-pwa/client"],
|
|
"importsNotUsedAsValues": "error"
|
|
}
|
|
}
|