mirror of
https://github.com/zrwusa/data-structure-typed.git
synced 2024-11-10 08:04:05 +00:00
16 lines
476 B
JSON
16 lines
476 B
JSON
{
|
|
"extends": "./tsconfig-base.json",
|
|
"compilerOptions": {
|
|
"rootDir": "./", // Specify the root directory of the source files in the project.
|
|
"outDir": "dist/dev",
|
|
"module": "NodeNext",
|
|
"target": "ESNext",
|
|
"moduleResolution": "NodeNext",
|
|
"sourceMap": true // It actually affects the error line number positioning in IDE test cases running.
|
|
},
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./test/**/*.ts"
|
|
]
|
|
}
|