data-structure-typed/tsconfig.json

16 lines
373 B
JSON
Raw Normal View History

2023-06-15 16:34:28 +00:00
{
"extends": "./tsconfig-base.json",
2023-06-15 16:34:28 +00:00
"compilerOptions": {
"rootDir": "./", // Specify the root directory of the source files in the project.
"outDir": "dist/dev",
"module": "NodeNext",
"target": "ESNext",
"moduleResolution": "NodeNext",
"sourceMap": false
},
"include": [
"./src/**/*.ts",
"./test/**/*.ts"
]
2023-06-15 16:34:28 +00:00
}