1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-12 12:08:21 +08:00
Files
AzurLaneAutoScript/webapp/packages/preload/tsconfig.json

19 lines
432 B
JSON
Raw Normal View History

2024-06-05 23:20:28 +08:00
{
"compilerOptions": {
"module": "esnext",
"target": "esnext",
"sourceMap": false,
"moduleResolution": "Node",
"skipLibCheck": true,
"strict": true,
"isolatedModules": true,
"types": ["node"],
"baseUrl": ".",
"paths": {
"@common/*": ["../common/*"]
}
},
"include": ["src/**/*.ts", "../../types/**/*.d.ts","../common/**/*.ts"],
"exclude": ["**/*.spec.ts", "**/*.test.ts"]
}