16 lines
358 B
JSON
16 lines
358 B
JSON
|
|
{
|
||
|
|
"$schema": "https://json.schemastore.org/tsconfig.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"rootDir": "src",
|
||
|
|
"outDir": "dist",
|
||
|
|
"module": "nodenext",
|
||
|
|
"declaration": true,
|
||
|
|
"moduleResolution": "nodenext",
|
||
|
|
"lib": ["es2022", "dom", "dom.iterable"],
|
||
|
|
"strict": true,
|
||
|
|
"skipLibCheck": true
|
||
|
|
},
|
||
|
|
"include": ["src"]
|
||
|
|
}
|