16 lines
352 B
JSON
16 lines
352 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"experimentalDecorators": true,
|
|
"types": ["node"],
|
|
"lib": ["ES2020", "DOM"]
|
|
},
|
|
"include": ["src/**/*", "__tests__/**/*"]
|
|
}
|