-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
49 lines (49 loc) · 1.6 KB
/
tsconfig.json
File metadata and controls
49 lines (49 loc) · 1.6 KB
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
43
44
45
46
47
48
49
{
"compilerOptions": {
"baseUrl": ".",
"target": "ESNext",
"module": "ESNext",
"useDefineForClassFields": true,
"allowImportingTsExtensions": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"allowJs": true,
/* Bundler Mode */
"jsx": "preserve",
"esModuleInterop": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"jsxImportSource": "solid-js",
"types": ["vite/client"],
"isolatedModules": true,
"noEmit": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"paths": {
"@interfaces/*": ["lib/interfaces/*"],
"@components/*": ["lib/components/*"],
"@routes/*": ["lib/routes/*"],
"@pages/*": ["lib/pages/*"],
"@styles/*": ["lib/styles/*"],
"@config/*": ["lib/config/*"],
"@lib/*": ["lib/*"],
"@assets/*": ["./assets/*"],
"@hooks/*": ["lib/utils/hooks/*"],
"@store/*": ["lib/store/*"],
"@context/*": ["lib/context/*"],
"@static/*": ["lib/static/*"],
"@utils/*": ["lib/utils/*"],
"@lib": ["./lib/*"]
},
/* Linting */
"strict": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": false
},
"include": ["lib", "types", "tailwind.config.ts", "**/*.ts", "**/*.tsx", "**/*.js"],
"references": [
{
"path": "./tsconfig.node.json"
}
],
"exclude": ["node_modules", "dist", "build", "docs", "extras"]
}