forked from intuition-box/BuildProof
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
31 lines (31 loc) · 882 Bytes
/
tsconfig.json
File metadata and controls
31 lines (31 loc) · 882 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
28
29
30
31
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"allowImportingTsExtensions": true,
"baseUrl": ".",
"forceConsistentCasingInFileNames": true,
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"moduleResolution": "Bundler",
"noEmit": true,
"types": ["@remix-run/node", "vite/client"],
"paths": {
"@components/*": ["app/components/*"],
"@consts/*": ["app/consts/*"],
"@lib/*": ["app/lib/*"],
"@routes/*": ["app/routes/*"],
"@styles/*": ["app/styles/*"],
"@server/*": ["app/.server/*"],
"@client/*": ["app/.client/*"],
"@images/*": ["./src/images/*"],
"@assets/*": ["app/assets/*"]
},
"outDir": "./build"
},
"include": ["**/*.ts", "**/*.tsx", "tailwind.config.ts"],
"exclude": ["node_modules", "build"],
"references": [
{
"path": "../../packages/1ui"
}
]
}