-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.app.json
More file actions
32 lines (30 loc) · 878 Bytes
/
tsconfig.app.json
File metadata and controls
32 lines (30 loc) · 878 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
32
{
"extends": ["@tsconfig/recommended", "@tsconfig/strictest"],
"compilerOptions": {
"checkJs": false,
"allowJs": true,
"baseUrl": ".",
"composite": true,
"lib": ["esnext", "dom", "dom.iterable"],
"module": "esnext",
"target": "esnext",
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"noEmit": true,
"verbatimModuleSyntax": true,
"paths": {
"@/*": ["src/*"],
"styled-system": ["styled-system"],
"@test/*": ["test-support/*"]
},
"types": ["chrome", "vite/client", "@total-typescript/ts-reset"],
"tsBuildInfoFile": ".tmp/app.tsbuildinfo"
},
"include": ["typings", "src", "styled-system", "test-support"],
"exclude": ["./dist"],
}