* Don't package .map files into final NPM package
* Support sourceMaps in tsconfig * Support launch file for debugging * show lib directory
This commit is contained in:
Родитель
614c682f4f
Коммит
7f46192758
|
@ -3,7 +3,7 @@ node_modules/
|
|||
*.swp
|
||||
*.swo
|
||||
.DS_Store
|
||||
*.log
|
||||
*.map
|
||||
log.txt
|
||||
|
||||
test-workspace
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"type": "node",
|
||||
"request": "attach",
|
||||
"name": "Debug Styled Plugin",
|
||||
"skipFiles": ["<node_internals>/**"],
|
||||
"outFiles": ["${workspaceFolder}/lib/**/*.js"],
|
||||
"port": 9229
|
||||
}
|
||||
]
|
||||
}
|
|
@ -5,7 +5,6 @@
|
|||
"**/.hg": true,
|
||||
"**/CVS": true,
|
||||
"**/.DS_Store": true,
|
||||
"lib": true,
|
||||
"**/*.log": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
"outDir": "lib",
|
||||
"rootDir": "src",
|
||||
"strict": true,
|
||||
"declaration": true
|
||||
"declaration": true,
|
||||
"sourceMap": true
|
||||
},
|
||||
"exclude": ["lib", "e2e", "node_modules", "test-workspace"]
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче