diff --git a/tsconfig.json b/tsconfig.json index 751e368..6f30b20 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,26 +1,26 @@ { "compilerOptions": { + "strict": false, + "alwaysStrict": true, "allowSyntheticDefaultImports": true, "allowUnreachableCode": false, - "declaration": false, + "declaration": true, "experimentalDecorators": true, - "lib": [ - "dom", - "es2017" - ], - "moduleResolution": "node", + "forceConsistentCasingInFileNames": true, + "jsx": "react", + "jsxFactory": "h", + "lib": ["dom", "es2017"], "module": "esnext", - "target": "es2017", + "moduleResolution": "node", + "noImplicitAny": true, + "noImplicitReturns": true, "noUnusedLocals": true, "noUnusedParameters": true, - "jsx": "react", - "jsxFactory": "h" + "outDir": ".tmp", + "pretty": true, + "removeComments": false, + "target": "es2017" }, - "include": [ - "src", - "types/jsx.d.ts" - ], - "exclude": [ - "node_modules" - ] + "include": ["src/**/*.ts", "src/**/*.tsx", "stencil.config.ts"], + "exclude": ["node_modules"] }