20 lines
497 B
JSON
20 lines
497 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"lib": ["ES2022"],
|
||
|
|
"module": "NodeNext",
|
||
|
|
"moduleResolution": "NodeNext",
|
||
|
|
"strict": true,
|
||
|
|
"noUncheckedIndexedAccess": true,
|
||
|
|
"exactOptionalPropertyTypes": true,
|
||
|
|
"allowImportingTsExtensions": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"types": ["node"]
|
||
|
|
},
|
||
|
|
"include": ["./**/*.ts"]
|
||
|
|
}
|