mirror of
https://github.com/jlengrand/open-wc.git
synced 2026-03-10 08:31:19 +00:00
24 lines
571 B
JSON
24 lines
571 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"lib": ["es2017", "dom"],
|
|
"declaration": true,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"emitDeclarationOnly": true,
|
|
"strict": false,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"types": ["node", "mocha", "chai"],
|
|
"esModuleInterop": true
|
|
},
|
|
"files": ["browser.d.ts"],
|
|
"include": [
|
|
"packages/testing-helpers/*.js",
|
|
"packages/semantic-dom-diff/get-diffable-html.js",
|
|
"packages/semantic-dom-diff/src/utils.js"
|
|
]
|
|
}
|