ソリューション構造のために開始してデバッグするのに問題があります (そして、それを変更することはできません)!
ここに私の構造があります:
はtsconfig.json
すべてのファイルを にトランスコンパイルするように構成されており、すべてdist/out-tsc
の typescript および html ファイルは にあります。src/app
index.html
/src
これが私のbs-config.json
ファイルです:
{
"port": 8000,
"files": ["./src/**/*.{html,htm,css,js}", "./dist/**/*.{html,htm,css,js}"],
"server": { "baseDir": "./src" }
}
私が./src
baseDir として持っている場所 (ファイルはどこにありindex.html
ますか) とファイルの中では、./dist/**
すべての*.js
トランスコンパイルされたものから読み取ろうとし./src/**/
、すべての html と typescript ファイルがある場所に!
開始するとlite-server
index.html ファイルが見つかりましたが、何も起こりません!
[1] ** browser-sync config **
[1] { injectChanges: false,
[1] files:
[1] [ './src/**/*.{html,htm,css,js}',
[1] './dist/**/*.{html,htm,css,js}' ],
[1] watchOptions: { ignored: 'node_modules' },
[1] server: { baseDir: './src', middleware: [ [Function], [Function] ] },
[1] port: 8000 }
[1] [BS] Access URLs:
[1] -------------------------------------
[1] Local: http://localhost:8000
[1] External: http://192.168.1.87:8000
[1] -------------------------------------
[1] UI: http://localhost:3001
[1] UI External: http://192.168.1.87:3001
[1] -------------------------------------
[1] [BS] Serving files from: ./src
[1] [BS] Watching files...
[1] 16.10.29 19:34:49 304 GET /index.html
多くのバリアントを試しましたが、正しく構成できません! 誰でも私を助けることができますか?
ありがとう!