19 lines
		
	
	
		
			425 B
		
	
	
	
		
			JSON
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			425 B
		
	
	
	
		
			JSON
		
	
	
	
{
 | 
						|
  "extends": "@coze-arch/ts-config/tsconfig.web.json",
 | 
						|
  "$schema": "https://json.schemastore.org/tsconfig",
 | 
						|
  "compilerOptions": {
 | 
						|
    "rootDir": "./",
 | 
						|
    "outDir": "./dist",
 | 
						|
    "jsx": "react-jsx",
 | 
						|
    "lib": ["DOM", "ESNext"],
 | 
						|
    "target": "ES2020"
 | 
						|
  },
 | 
						|
  "include": ["**/__tests__", "vitest.config.ts"],
 | 
						|
  "exclude": ["node_modules", "dist"],
 | 
						|
  "references": [
 | 
						|
    {
 | 
						|
      "path": "./tsconfig.build.json"
 | 
						|
    }
 | 
						|
  ]
 | 
						|
}
 |