generated from koishijs/boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
23 lines (21 loc) · 840 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"extends": "./tsconfig.base",
"compilerOptions": {
"baseUrl": ".",
"paths": {
// The `plugins` directory is used to store created plugins.
// Try `npm run setup` or `yarn setup` to create a new plugin.
"koishi-plugin-*": ["plugins/*/src"],
// If you are publishing scoped plugins, just uncomment the next line
// and change `@scope` to your npm account or organization name:
// "@scope/koishi-plugin-*": ["plugins/*/src"],
// Many monorepo projects have a `packages` directory.
// You can use it if you are developing non-plugin packages.
// Even if you don't, do not delete this line,
// as it bypasses a bug in tsconfig-path/register.
// See: https://github.com/dividab/tsconfig-paths/issues/209
"*": ["packages/*/src"],
},
},
"files": [],
}