browser-ext/tsconfig.json

15 lines
283 B
JSON
Raw Normal View History

2024-04-25 18:16:30 +00:00
{
"extends": "plasmo/templates/tsconfig.base",
"exclude": ["node_modules"],
"include": [".plasmo/index.d.ts", "./**/*.ts", "./**/*.tsx"],
"compilerOptions": {
"jsx": "react-jsx",
"strict": true,
"paths": {
"~*": ["./src/*"]
},
"baseUrl": "."
}
}