22 lines
519 B
JSON
22 lines
519 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"baseUrl": ".",
|
||
|
"target": "ESNext",
|
||
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
||
|
"allowJs": false,
|
||
|
"skipLibCheck": true,
|
||
|
"esModuleInterop": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"strict": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"module": "ESNext",
|
||
|
"moduleResolution": "Node",
|
||
|
"resolveJsonModule": true,
|
||
|
"isolatedModules": true,
|
||
|
"noEmit": true,
|
||
|
"jsx": "preserve"
|
||
|
},
|
||
|
"include": ["./src"],
|
||
|
"exclude": ["node_modules"]
|
||
|
}
|