diff --git a/examples/website/tsconfig.json b/examples/website/tsconfig.json index 2037ea5..964b438 100644 --- a/examples/website/tsconfig.json +++ b/examples/website/tsconfig.json @@ -1,17 +1,17 @@ { "compilerOptions": { "module": "ESNext", - "target": "ESNext", + "target": "ES2017", "strict": true, "allowSyntheticDefaultImports": true, "esModuleInterop": true, "moduleResolution": "bundler", - "declaration": true, - "declarationDir": "./dist/types", "outDir": "./dist", "rootDir": ".", "skipLibCheck": true, "inlineSourceMap": true }, - "exclude": ["./dist"] -} + "exclude": [ + "./dist" + ] +} \ No newline at end of file diff --git a/reconcile-js/tsconfig.json b/reconcile-js/tsconfig.json index 7a05c46..1d771f1 100644 --- a/reconcile-js/tsconfig.json +++ b/reconcile-js/tsconfig.json @@ -1,17 +1,17 @@ { - "compilerOptions": { - "module": "ESNext", - "target": "ESNext", - "strict": true, - "allowSyntheticDefaultImports": true, - "esModuleInterop": true, - "moduleResolution": "bundler", - "declaration": true, - "declarationDir": "./dist/types", - "outDir": "./dist", - "rootDir": "./src", - "skipLibCheck": true, - "inlineSourceMap": true - }, - "exclude": ["./dist"] + "compilerOptions": { + "module": "ESNext", + "target": "ESNext", + "strict": true, + "allowSyntheticDefaultImports": true, + "moduleResolution": "bundler", + "declaration": true, + "declarationDir": "./dist/types", + "skipLibCheck": true, + "inlineSourceMap": true + }, + "exclude": [ + "./dist", + "**/*.test.ts" + ] }