mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-16 06:25:24 +00:00
19 lines
432 B
JSON
19 lines
432 B
JSON
{
|
|
"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"]
|
|
}
|