mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
- Removes test related code since there are no tests - Removes client/renderer split since there is only a renderer - Simplify webpack logic to align with our webpack sample - Document in top level readme and improve docs
13 lines
274 B
JSON
13 lines
274 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"outDir": "out",
|
|
"module": "esnext",
|
|
"target": "es2020",
|
|
"lib": ["es2020", "dom"],
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"strict": true /* enable all strict type-checking options */
|
|
}
|
|
}
|