-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
42 lines (42 loc) · 1.17 KB
/
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
34
35
36
37
38
39
40
41
42
{
"compilerOptions": {
"module": "esnext",
"target": "ES6",
"lib": ["es2017", "dom", "dom.iterable"],
"types": ["vite/client", "jest", "node"],
"declaration": true,
"noEmit": true,
"emitDeclarationOnly": false,
"strict": false,
"skipLibCheck": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"allowImportingTsExtensions": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"useDefineForClassFields": false,
"resolveJsonModule": true,
"esModuleInterop": true,
"paths": {
"Blocks/*": ["./src/blocks/*"],
"Components/*": ["./src/components/*"],
"Directives/*" :["./src/directives/*"],
"Services/*": ["./src/services/*"],
"Helpers/*": ["./src/helpers/*"],
"Constants/*": ["./src/constants/*"],
"Types/*": ["./src/types/*"],
"Utils/*": ["./src/utils/*"]
}
},
"include": [
"./*.ts",
"scripts/**/*.ts",
"src/**/*.ts",
"src/**/*.json"
],
}