shoelace/tsconfig.json

19 wiersze
490 B
JSON
Czysty Zwykły widok Historia

2020-07-15 21:30:37 +00:00
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"declaration": false,
"experimentalDecorators": true,
2020-12-30 13:39:43 +00:00
"lib": ["dom", "es2017", "dom.iterable"],
2020-07-15 21:30:37 +00:00
"moduleResolution": "node",
"module": "esnext",
"target": "es2017",
"noUnusedLocals": true,
"noUnusedParameters": true,
"jsx": "react",
"jsxFactory": "h"
},
2020-12-30 18:32:42 +00:00
"include": ["src", "types/jsx.d.ts"],
2020-07-15 21:30:37 +00:00
"exclude": ["node_modules", "stencil.config.ts"]
}