我在启动和调试应有的解决方案结构时遇到问题(而且我无法修改它)!
这是我的结构:
intsconfig.json
配置为将所有文件转编译为,dist/out-tsc
并且所有 typescript 和 html 文件都在 in 中src/app
,除了index.html
in /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
我尝试了很多变体,但我无法正确配置!任何人都可以帮助我吗?
谢谢!