forked from cmda-minor-web/meesterproef-2021
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
33 lines (33 loc) · 968 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
24
25
26
27
28
29
30
31
32
33
{
"compilerOptions": {
"moduleResolution": "node",
"module": "es2020",
"lib": ["es2020", "dom.iterable", "DOM"],
"target": "es2019",
"importsNotUsedAsValues": "error",
"isolatedModules": true,
"resolveJsonModule": true,
"sourceMap": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"downlevelIteration": true,
"baseUrl": ".",
"allowJs": true,
"checkJs": true,
"paths": {
"$atoms": ["src/lib/components/atoms"],
"$molecules": ["src/lib/components/molecules"],
"$organisms": ["src/lib/components/organisms"],
"$templates": ["src/lib/components/templates"],
"$icons": ["src/lib/icons"],
"$actions": ["src/lib/actions"],
"$utils": ["src/lib/utils"],
"$types": ["src/lib/types"],
"$stores": ["src/lib/stores"],
"$config/*": ["src/lib/config/*"],
"$db/*": ["src/lib/db/*"]
}
},
"include": ["src/**/*.d.ts", "src/**/*.js", "src/**/*.ts", "src/**/*.svelte"]
}