shoelace/tsconfig.json

19 wiersze
497 B
JSON
Czysty Zwykły widok Historia

2020-01-04 03:46:15 +00:00
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"declaration": false,
"experimentalDecorators": true,
2020-05-27 01:59:32 +00:00
"lib": ["dom", "es2017", "dom", "dom.iterable"],
2020-01-04 03:46:15 +00:00
"moduleResolution": "node",
"module": "esnext",
"target": "es2017",
"noUnusedLocals": true,
"noUnusedParameters": true,
"jsx": "react",
"jsxFactory": "h"
},
2020-05-27 01:59:32 +00:00
"include": ["src", "types/jsx.d.ts"],
"exclude": ["node_modules", "stencil.config.ts"]
2020-01-04 03:46:15 +00:00
}