mirror of
https://gitee.com/bitdance-team/chrome-extension
synced 2025-01-11 06:08:15 +08:00
19 lines
487 B
JSON
19 lines
487 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["esnext", "dom"],
|
|
"types": ["vite/client"],
|
|
"composite": true
|
|
},
|
|
"exclude": ["**/*.spec.ts", "**/*.spec.tsx"],
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
|
|
}
|