mirror of
				https://github.com/excalidraw/excalidraw.git
				synced 2025-11-04 12:54:23 +01:00 
			
		
		
		
	fix: incorrect type imports (#9308)
This commit is contained in:
		@@ -2,17 +2,18 @@
 | 
			
		||||
  "name": "@excalidraw/math",
 | 
			
		||||
  "version": "0.1.0",
 | 
			
		||||
  "type": "module",
 | 
			
		||||
  "types": "./dist/types/math/index.d.ts",
 | 
			
		||||
  "types": "./dist/types/math/src/index.d.ts",
 | 
			
		||||
  "main": "./dist/prod/index.js",
 | 
			
		||||
  "module": "./dist/prod/index.js",
 | 
			
		||||
  "exports": {
 | 
			
		||||
    ".": {
 | 
			
		||||
      "types": "./dist/types/math/src/index.d.ts",
 | 
			
		||||
      "development": "./dist/dev/index.js",
 | 
			
		||||
      "production": "./dist/prod/index.js",
 | 
			
		||||
      "default": "./dist/prod/index.js"
 | 
			
		||||
    },
 | 
			
		||||
    "./*": {
 | 
			
		||||
      "types": "./../math/dist/types/math/*"
 | 
			
		||||
      "types": "./../math/dist/types/math/src/*.d.ts"
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  "files": [
 | 
			
		||||
 
 | 
			
		||||
@@ -2,5 +2,7 @@
 | 
			
		||||
  "extends": "../tsconfig.base.json",
 | 
			
		||||
  "compilerOptions": {
 | 
			
		||||
    "outDir": "./dist/types"
 | 
			
		||||
  }
 | 
			
		||||
  },
 | 
			
		||||
  "include": ["src/**/*", "global.d.ts"],
 | 
			
		||||
  "exclude": ["**/*.test.*", "tests", "types", "examples", "dist"]
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user