我过去曾使用Visual Studio Code for Angular 2,如果我不想查看.js和.js.map文件,那么它就是一个隐藏在IDE中的工作区设置位置。 / p>
我现在正在开展一个项目,其中VS 2017专业版使用了Typescript,jasmine,karma和Angular 4. Task Runner等。
我希望能够看到并删除.js和.js.map文件,因为一个业力因缓存而臭名昭着......并不好玩。
我一直在浏览很多文件而且我不知道文件不在的原因。
这是我的tsconfig.json
{
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"allowJs": true,
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2016",
"dom"
]
}
}
那说
allowJS : true
我可以粘贴哪些其他文件?编译/构建发生了什么?
答案 0 :(得分:1)
可能是VS代码设置:t=# prepare so1(text,text) as
with p(banned_ts, reason) as (values ($1,$2))
, sid(serial_id) as (values('x'),('y'),('z'))
, data as (select * from sid join p on true)
select * from data;
PREPARE
t=# execute so1('a','b');
serial_id | banned_ts | reason
-----------+-----------+--------
x | a | b
y | a | b
z | a | b
(3 rows)
。
它的值可能包含一个用于过滤.js文件的glob模式。
您可以在以下网址找到它:
files.exclude
)%APPDATA%\Code\User\settings.json
)答案 1 :(得分:1)