2023-06-15 16:34:28 +00:00
|
|
|
{
|
2023-10-25 07:51:50 +00:00
|
|
|
"extends": "./tsconfig-base.json",
|
2023-06-15 16:34:28 +00:00
|
|
|
"compilerOptions": {
|
2023-11-13 15:51:43 +00:00
|
|
|
"rootDir": "./", // Specify the root directory of the source files in the project.
|
|
|
|
"outDir": "dist/dev",
|
2023-10-25 07:51:50 +00:00
|
|
|
"module": "NodeNext",
|
2023-11-13 15:51:43 +00:00
|
|
|
"target": "ESNext",
|
2023-10-25 07:51:50 +00:00
|
|
|
"moduleResolution": "NodeNext",
|
2023-11-15 15:17:55 +00:00
|
|
|
"sourceMap": true // It actually affects the error line number positioning in IDE test cases running.
|
2023-11-04 02:00:51 +00:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"./src/**/*.ts",
|
|
|
|
"./test/**/*.ts"
|
|
|
|
]
|
2023-06-15 16:34:28 +00:00
|
|
|
}
|