19 lines
352 B
JSON
19 lines
352 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "es2020",
|
||
|
|
"jsx": "preserve",
|
||
|
|
"lib": ["esnext", "DOM"],
|
||
|
|
"module": "esnext",
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"strict": true,
|
||
|
|
"strictNullChecks": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true
|
||
|
|
},
|
||
|
|
"exclude": [
|
||
|
|
"examples/**",
|
||
|
|
"dist/**"
|
||
|
|
]
|
||
|
|
}
|