28 lines
446 B
JSON
28 lines
446 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"lib": [
|
|
"ES2022",
|
|
"DOM"
|
|
],
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"rootDir": "."
|
|
},
|
|
"include": [
|
|
"src",
|
|
"tests"
|
|
],
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules"
|
|
]
|
|
}
|