15 lines
270 B
JSON
15 lines
270 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ES2021",
|
||
|
"lib": ["ESNext"],
|
||
|
"moduleResolution": "node",
|
||
|
"module": "commonjs",
|
||
|
"outDir": "build",
|
||
|
"strict": true,
|
||
|
"esModuleInterop": true,
|
||
|
"skipLibCheck": true,
|
||
|
"resolveJsonModule": true
|
||
|
},
|
||
|
"include": ["src/**/*"]
|
||
|
}
|