Files
engine/tsconfig.json
GuoLei1990 deb458685a Init code.
2021-01-25 14:13:04 +08:00

21 lines
553 B
JSON

{
"compilerOptions": {
"module": "esnext",
"target": "esnext",
"skipDefaultLibCheck": true,
"declaration": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"declarationDir": "types",
"sourceMap": true,
"baseUrl": "./",
"emitDeclarationOnly": true,
"skipLibCheck": true,
"paths": {
"@/*": ["src/*"] // 配置模块别名,对于 chair 项目需做更改,见下文
}
},
"exclude": ["node_modules", "types", "packages/*/tests"]
}