happy-dom
Version:
Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.
37 lines • 709 B
JSON
{
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"target": "ES2020",
"declaration": true,
"declarationMap": true,
"module": "Node16",
"moduleResolution": "Node16",
"esModuleInterop": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": true,
"skipLibCheck": false,
"baseUrl": ".",
"composite": false,
"incremental": false,
"lib": [
"es2020"
],
"types": [
"node"
]
},
"include": [
"@types/node",
"src"
],
"exclude": [
"@types/dom"
]
}