forked from ScopeLift/umbra-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 778 Bytes
/
tsconfig.json
File metadata and controls
27 lines (27 loc) · 778 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
25
26
27
{
// "extends": "@quasar/app/tsconfig-preset",
"extends": "../tsconfig.settings.json",
"compilerOptions": {
"baseUrl": ".",
"composite": true,
"esModuleInterop": true,
"outDir": "build",
"resolveJsonModule": true,
"skipLibCheck": true,
"module": "es2020",
"target": "es2020",
"moduleResolution": "node",
"paths": {
"src/*": ["src/*"],
"app/*": ["*"],
"components/*": ["src/components/*"],
"layouts/*": ["src/layouts/*"],
"pages/*": ["src/pages/*"],
"assets/*": ["src/assets/*"],
"boot/*": ["src/boot/*"],
"@sinonjs/fake-timers": ["../node_modules/@types/sinonjs__fake-timers"]
}
},
"include": ["src", "test/*", "src/**/*.json", "test/__mocks__/*"],
"exclude": ["build/*"]
}