22 lines
		
	
	
		
			478 B
		
	
	
	
		
			JSON
		
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			478 B
		
	
	
	
		
			JSON
		
	
	
	
{
 | 
						|
  "extends": "@coze-arch/ts-config/tsconfig.web.json",
 | 
						|
  "$schema": "https://json.schemastore.org/tsconfig",
 | 
						|
  "compilerOptions": {
 | 
						|
    "rootDir": "./",
 | 
						|
    "outDir": "./dist",
 | 
						|
    "types": ["vitest/globals"],
 | 
						|
    "strictNullChecks": true,
 | 
						|
    "noImplicitAny": true,
 | 
						|
    "paths": {
 | 
						|
      "@/*": ["./src/*"]
 | 
						|
    }
 | 
						|
  },
 | 
						|
  "include": ["__tests__", "vitest.config.ts", "stories"],
 | 
						|
  "exclude": ["./dist"],
 | 
						|
  "references": [
 | 
						|
    {
 | 
						|
      "path": "./tsconfig.build.json"
 | 
						|
    }
 | 
						|
  ]
 | 
						|
}
 |