У меня есть субмодуль в моих проектах решений.Оба (первый-второй проекты) имеют файлы .ts, поэтому я хочу поместить tsconfig.json в подмодуль и поделиться им для них обоих.
В файловой системе они расположены так:
~/solution
--project1
--Scripts
--(ts files)
--submodule
--tsconfig.json(I want to put it here)
~/solution
--project2
--Scripts
--(ts files)
--submodule
project1's name is equal with project2's name
Я пытался добавить rootDir в compilerOptions
"rootDir": "..\\project1\\Scripts\\**\\*"
Я пытался добавить
"include": [
"..\\project1\\Scripts\\**\\*"
]
Ни один из них не работает для меня.
здесьмой tsconfig.json
{
"compileOnSave": true,
"buildOnSave": true,
"compilerOptions": {
"noImplicitAny": false,
"noEmitOnError": true,
"removeComments": true,
"sourceMap": false,
"target": "es5",
"module": "none",
"types": [],
"emitBOM": false,
"charset": "utf8"
},
"exclude": [
"node_modules",
"wwwroot"
]
}