19 lines
433 B
JSON
19 lines
433 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"baseUrl": "./",
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"paths": {
|
|
"~/*": ["*"],
|
|
"@/*": ["src/*"],
|
|
"/#/*": ["types/*"],
|
|
"@vab/*": ["library/*"],
|
|
"@gp": ["library/plugins/vab"]
|
|
},
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
|
|
},
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|