18 lines
367 B
JSON
18 lines
367 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"module": "ESNext",
|
||
|
"target": "es2016",
|
||
|
"lib": ["DOM", "ESNext"],
|
||
|
"strict": true,
|
||
|
"esModuleInterop": true,
|
||
|
"incremental": true,
|
||
|
"skipLibCheck": true,
|
||
|
"moduleResolution": "node",
|
||
|
"resolveJsonModule": true,
|
||
|
"forceConsistentCasingInFileNames": true
|
||
|
},
|
||
|
"exclude": [
|
||
|
"dist",
|
||
|
"node_modules"
|
||
|
]
|
||
|
}
|