18 lines
447 B
JSON
18 lines
447 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2023",
|
|
"lib": ["ES2023", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"verbatimModuleSyntax": true,
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"declarationDir": "./lib-dist/types",
|
|
"rootDir": "./src/helpers",
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src/helpers/**/*.ts"]
|
|
}
|