33 lines
		
	
	
		
			756 B
		
	
	
	
		
			JSON
		
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			756 B
		
	
	
	
		
			JSON
		
	
	
	
{
 | 
						|
  "extends": "@coze-arch/ts-config/tsconfig.web.json",
 | 
						|
  "$schema": "https://json.schemastore.org/tsconfig",
 | 
						|
  "include": [
 | 
						|
    "__tests__",
 | 
						|
    "stories",
 | 
						|
    "vitest.config.ts",
 | 
						|
    "tailwind.config.ts",
 | 
						|
    "./src/**/*.test.ts"
 | 
						|
  ],
 | 
						|
  "exclude": ["./dist"],
 | 
						|
  "references": [
 | 
						|
    {
 | 
						|
      "path": "./tsconfig.build.json"
 | 
						|
    }
 | 
						|
  ],
 | 
						|
  "compilerOptions": {
 | 
						|
    "jsx": "preserve",
 | 
						|
    "strictNullChecks": true,
 | 
						|
    "paths": {
 | 
						|
      "@/*": ["./src/*"],
 | 
						|
      "@shared/*": ["./shared/*"]
 | 
						|
    },
 | 
						|
    "types": ["utility-types", "react", "react-dom", "vitest/globals"],
 | 
						|
    "noImplicitReturns": false,
 | 
						|
    "useUnknownInCatchVariables": false,
 | 
						|
    "strictPropertyInitialization": false,
 | 
						|
    "module": "ESNext",
 | 
						|
    "rootDir": "./",
 | 
						|
    "outDir": "./dist"
 | 
						|
  }
 | 
						|
}
 |