Wroclaw
18646b9dc6
this patch moves the rootDir of the typescript project up a directory this moves all content in the dist directory inside the new src directory I couldn't find other way
16 lines
298 B
JSON
16 lines
298 B
JSON
{
|
|
"include": [
|
|
"./src/**/*"
|
|
],
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "CommonJS",
|
|
"sourceMap": true,
|
|
"outDir": "./dist/",
|
|
"rootDir": "./",
|
|
"strict": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true
|
|
}
|
|
}
|