mirror of
https://github.com/jlengrand/open-wc.git
synced 2026-03-10 15:51:31 +00:00
35 lines
806 B
JSON
35 lines
806 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"lib": ["es2017", "dom"],
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"noEmit": true,
|
|
"strict": false,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"types": ["node", "mocha"],
|
|
"esModuleInterop": true,
|
|
},
|
|
"files": [
|
|
"browser.d.ts"
|
|
],
|
|
"include": [
|
|
"packages"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/node_modules/*",
|
|
"**/coverage/*",
|
|
"packages/create/src/generators/*/templates/**/*",
|
|
"packages/webpack-index-html-plugin/demo/**/*",
|
|
"packages/building-utils/test/custom-polyfils/**/*",
|
|
"**/dist/**/*",
|
|
"packages/**/test/**/snapshots",
|
|
"packages/es-dev-server/test/fixtures/**/*",
|
|
"packages/es-dev-server/demo/**/*"
|
|
]
|
|
}
|