2022-04-24 14:01:19 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"lib": [ "es2015", "es2017", "dom" ],
|
|
|
|
"target": "es5",
|
2022-05-02 01:48:51 +00:00
|
|
|
"allowJs": true,
|
2022-04-24 14:01:19 +00:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"outDir": "temp/vscode-dist",
|
2022-05-02 01:48:51 +00:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"sourceMap": true
|
2022-04-24 14:01:19 +00:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"library",
|
|
|
|
"local",
|
|
|
|
"temp",
|
|
|
|
"build",
|
2022-05-02 01:48:51 +00:00
|
|
|
"settings",
|
|
|
|
".git",
|
|
|
|
".vscode",
|
|
|
|
"build-templates",
|
|
|
|
"preview-templates",
|
|
|
|
"packages"
|
2022-04-24 14:01:19 +00:00
|
|
|
]
|
|
|
|
}
|