forked from GBSL-Informatik/teaching-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
23 lines (23 loc) · 817 Bytes
/
tsconfig.json
File metadata and controls
23 lines (23 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
// This file is not used in compilation. It is here just for a nice editor experience.
"extends": "@docusaurus/tsconfig",
"compilerOptions": {
"baseUrl": ".",
"experimentalDecorators": false,
"types": ["docusaurus-plugin-sass"],
"module": "esnext",
"target": "esnext",
"strict": true,
"paths": {
"@tdev-components/*": ["src/components/*"],
"@tdev-hooks/*": ["src/hooks/*"],
"@tdev-models/*": ["src/models/*"],
"@tdev-stores/*": ["src/stores/*"],
"@tdev-plugins/*": ["src/plugins/*"],
"@tdev-api/*": ["src/api/*"],
"@tdev/*": ["src/*"],
"@site/*": ["./*"]
}
},
"exclude": ["src/plugins/**/*.test.ts", "node_modules", "dist", "build"]
}