20 lines
368 B
JSON
20 lines
368 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ES2022",
|
||
|
"module": "commonjs",
|
||
|
"lib": [
|
||
|
"ES2022"
|
||
|
],
|
||
|
"outDir": "build",
|
||
|
"strict": true,
|
||
|
"moduleResolution": "node",
|
||
|
"baseUrl": ".",
|
||
|
"typeRoots": [
|
||
|
"./node_modules/@types",
|
||
|
],
|
||
|
"skipLibCheck": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"esModuleInterop": true
|
||
|
}
|
||
|
}
|