Browser-addon/tsconfig.json
2023-04-01 01:54:44 +02:00

28 lines
688 B
JSON

{
"compilerOptions": {
"target": "esnext",
"types": ["vite/client", "node"],
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"noEmit": true,
"jsx": "react-jsx",
"baseUrl": ".",
"paths": {
"@src/*": ["src/*"],
"@assets/*": ["src/assets/*"],
"@pages/*": ["src/pages/*"]
}
},
"include": ["src",
"utils", "vite.config.ts"],
}