-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 760 Bytes
/
Copy pathtsconfig.json
File metadata and controls
25 lines (25 loc) · 760 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
{
"compilerOptions": {
"outDir": "./build",
"strict": true,
"lib": [
"dom",
"es2015"
],
"jsx": "react",
"jsxFactory": "JSXFactory.createElement",
"baseUrl": ".", // This must be specified if "paths" is.
"paths": {
"globals": ["./src/globals"], // This mapping is relative to "baseUrl"
"components/*": ["./src/components/*"], // This mapping is relative to "baseUrl"
"jsxFactories/*": ["./src/jsxFactories/*"], // This mapping is relative to "baseUrl"
"pages/*": ["./src/pages/*"] // This mapping is relative to "baseUrl"
}
},
"files": [
"./src/index.tsx"
],
"include": [
"src/**/*.d.ts"
]
}