25 lines
488 B
JSON
25 lines
488 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"lib": [
|
|
"ES2022",
|
|
"DOM"
|
|
],
|
|
"rootDir": ".",
|
|
"outDir": "dist",
|
|
"declaration": true,
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"test/**/*.ts"
|
|
]
|
|
}
|