- Format all extension files according to project standards - Add changeset for VS Code extension implementation - Update package-lock.json dependencies
28 lines
686 B
JSON
28 lines
686 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"target": "ES2022",
|
|
"outDir": "out",
|
|
"lib": ["ES2022", "DOM"],
|
|
"sourceMap": true,
|
|
"rootDir": "src",
|
|
"strict": true /* enable all strict type-checking options */,
|
|
"moduleResolution": "Node",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"jsx": "react-jsx",
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@/components/*": ["./src/components/*"],
|
|
"@/lib/*": ["./src/lib/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", ".vscode-test", "out", "dist"]
|
|
}
|