Joey / tsconfig.json
yuanjiajun
feat: 变量
cdbeb05
raw
history blame contribute delete
515 Bytes
Invalid JSON: Expected double-quoted property name in JSONat line 13, column 22
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"outDir": "./dist",
"rootDir": "./src",
"moduleResolution": "node",
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"baseUrl": ".", // 对应文件系统中的根路径
"paths": {
"@/*": ["src/*"] // 将 @/ 映射到 src/ 目录
},
},
"include": ["src"],
"exclude": ["node_modules", "dist"]
}