1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"lib": [
"DOM",
"esnext",
"esnext.array",
"esnext.asynciterable",
"esnext.symbol"
],
"module": "commonjs",
"moduleResolution": "node",
"strict": true,
"noImplicitAny": false,
"target": "ESNEXT",
// https://esbuild.github.io/api/#jsx-factory
// these short window aliases make the bundle ~10% smaller
"jsxFactory": "_Ve$",
"jsxFragmentFactory": "_VF$",
"jsx": "react"
},
"include": ["src/**/*"]
}
|