diff --git a/package.json b/package.json index 311f6539a..af4c7c999 100644 --- a/package.json +++ b/package.json @@ -5,11 +5,10 @@ "main": "lib/index.js", "module": "es/index.js", "style": "lib/index.css", - "typings": "types/index.d.ts", + "typings": "lib/index.d.ts", "files": [ "es", "lib", - "types", "vetur" ], "publishConfig": { diff --git a/tsconfig.declaration.json b/tsconfig.declaration.json index ea99aa537..625bb2adc 100644 --- a/tsconfig.declaration.json +++ b/tsconfig.declaration.json @@ -2,9 +2,9 @@ "extends": "./tsconfig.json", "compilerOptions": { "declaration": true, - "skipLibCheck": true, - "declarationDir": "./types" + "declarationDir": ".", + "emitDeclarationOnly": true }, - "include": ["src/**/*"], - "exclude": ["**/demo/**", "**/test/**", "**/node_modules"] + "include": ["es/**/*", "lib/**/*"], + "exclude": ["node_modules", "**/test/**/*", "**/demo/**/*"] } diff --git a/tsconfig.json b/tsconfig.json index 5d2a2b1a5..924e6b665 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,6 +6,7 @@ "module": "esnext", "strict": true, "allowJs": true, + "skipLibCheck": true, "noImplicitThis": true, "esModuleInterop": true, "moduleResolution": "node", @@ -13,5 +14,5 @@ "@demo/*": ["docs/site/*"] } }, - "include": ["types/**/*", "docs/**/*", "src/**/*"] + "include": ["src/**/*", "types/**/*", "docs/**/*", "test/**/*"] }