Files
backroad/jsconfig.json
LP B e41d0cfed4 config(project): gitignore + jsconfig changes
gitignore all files under api/cmd/portainer but main.go and enable Code Editor autocomplete on import ... from '@/...'
2021-05-11 19:04:45 +02:00

18 lines
454 B
JSON

{
"compilerOptions": {
"target": "es2017",
"allowSyntheticDefaultImports": false,
"baseUrl": "app",
"module": "commonjs",
"paths": {
"Agent/*": ["agent/*"],
"Azure/*": ["azure/*"],
"Docker/*": ["docker/*"],
"Kubernetes/*": ["kubernetes/*"],
"Portainer/*": ["portainer/*"],
"@/*": ["../app/*"],
}
},
"exclude": ["api", "build", "dist", "distribution", "node_modules", "test", "webpack"]
}