2021-10-08 17:59:53 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2023-03-19 18:33:48 +08:00
|
|
|
"module": "esnext",
|
|
|
|
|
"target": "esnext",
|
|
|
|
|
"sourceMap": false,
|
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"types": ["node"],
|
2023-04-24 18:57:24 +08:00
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@common/*": ["../common/*"]
|
|
|
|
|
}
|
2021-10-08 17:59:53 +08:00
|
|
|
},
|
2023-04-24 18:57:24 +08:00
|
|
|
"include": ["src/**/*.ts", "../../types/**/*.d.ts","../common/**/*.ts"],
|
2023-03-19 18:33:48 +08:00
|
|
|
"exclude": ["**/*.spec.ts", "**/*.test.ts"]
|
2021-10-08 17:59:53 +08:00
|
|
|
}
|