mirror of
				https://github.com/excalidraw/excalidraw.git
				synced 2025-11-03 20:34:40 +01:00 
			
		
		
		
	* feat: export types for package @excalidraw/excalidraw * update * remove * Add lib in tsconfig-types and Add global.d.ts, and errors down to 39 :) * Add declaration for scss so typescript allows scss imports, errors down to 37 :) * Add css.d.ts, errors down to 32 yay * set target to es6, all errors resolved yay * move types outside dist * update docs * fix
		
			
				
	
	
		
			19 lines
		
	
	
		
			499 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			499 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
  "include": ["src/packages/excalidraw", "src/global.d.ts", "src/css.d.ts"],
 | 
						|
  "compilerOptions": {
 | 
						|
    "allowJs": true,
 | 
						|
    "declaration": true,
 | 
						|
    "emitDeclarationOnly": true,
 | 
						|
    "outDir": "src/packages/excalidraw/types",
 | 
						|
    "jsx": "react-jsx",
 | 
						|
    "target": "es6",
 | 
						|
    "lib": ["dom", "dom.iterable", "esnext"],
 | 
						|
    "module": "esnext",
 | 
						|
    "moduleResolution": "node",
 | 
						|
    "resolveJsonModule": true,
 | 
						|
    "skipLibCheck": true,
 | 
						|
    "allowSyntheticDefaultImports": true,
 | 
						|
    "strict": true
 | 
						|
  }
 | 
						|
}
 |