Files
browser-helper/tsconfig.json
2025-12-26 18:13:15 +08:00

26 lines
464 B
JSON

{
"extends": "@kevisual/types/json/backend.json",
"compilerOptions": {
"module": "NodeNext",
"target": "esnext",
"baseUrl": ".",
"typeRoots": [
"./node_modules/@types",
"./node_modules/@kevisual/types/index.d.ts",
"./typings"
],
"paths": {
"@/*": [
"src/*"
],
"@agent/*": [
"agent/*"
]
},
},
"include": [
"typings/**/*.d.ts",
"src/**/*",
"agent/**/*",
],
}