-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtsconfig.json
More file actions
24 lines (24 loc) · 900 Bytes
/
tsconfig.json
File metadata and controls
24 lines (24 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"extends": ["@tsconfig/node-lts/tsconfig.json"],
"compilerOptions": {
"verbatimModuleSyntax": true,
"lib": [
// Target ES2020 to align with Vite.
// <https://vitejs.dev/config/build-options.html#build-target>
// Support for newer versions of language built-ins are
// left for the users to include, because that would require:
// - either the project doesn't need to support older versions of browsers;
// - or the project has properly included the necessary polyfills.
"ES2020",
"DOM",
"DOM.Iterable"
// No `ScriptHost` because Vue 3 dropped support for IE
],
"paths": {
"@bwrong/request": ["./packages/request/src/index.ts"],
"@bwrong/storage": ["./packages/storage/src/index.ts"],
"@bwrong/auth": ["./packages/auth/src/index.ts"]
}
},
"exclude": ["**/dist/**", "**/node_modules/**"]
}