mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-19 13:10:16 +08:00
Changed package.json main and exports to use index.js instead of index.cjs. Updated tsconfig.json to allow JavaScript files and expanded include patterns to support both JS and TS files.
17 lines
232 B
JSON
17 lines
232 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"allowJs": true
|
|
},
|
|
"include": [
|
|
"*.cjs",
|
|
"**/*.cjs",
|
|
"**/*.ts",
|
|
"*.js",
|
|
"**/*.js"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
} |