25 lines
		
	
	
		
			709 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			709 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
	"compilerOptions": {
 | 
						|
        "module": "commonjs",          // 使用 CommonJS 模块系统
 | 
						|
        "target": "es2015",            // 编译为 ES2015
 | 
						|
        "moduleResolution": "node",
 | 
						|
		"sourceMap": true,
 | 
						|
		"strict": false,            // 启用严格模式
 | 
						|
		"esModuleInterop": true,   // 启用 ES 模块的兼容性
 | 
						|
		"skipLibCheck": true,      // 跳过库的类型检查
 | 
						|
		"forceConsistentCasingInFileNames": true,
 | 
						|
        "baseUrl": ".", 
 | 
						|
		"paths": {
 | 
						|
            "@/*": ["src/*"]
 | 
						|
		},
 | 
						|
		"outDir": "./dist",
 | 
						|
		"rootDir": "./src",
 | 
						|
	},
 | 
						|
    "include": [
 | 
						|
        "src/**/*.ts"
 | 
						|
    ],
 | 
						|
    "exclude": [
 | 
						|
        "node_modules"               // 排除 node_modules 目录
 | 
						|
    ]
 | 
						|
}
 | 
						|
   |